ERORR with ONNX2TRT : Unknown embedded device detected

BOARD:Jetson Xariver NX 16g emmc + jetson nano B01 carrier board.

Environment

TensorRT Version : 8.2.1.8
GPU Type : jetson xarive nx 16g
Nvidia Driver Version : jetpack4.6.1
CUDA Version : 10.2
CUDNN Version : I dont kown,its installed by jetpack4.6.1.
Operating System + Version : ubuntu 18.04LTS
Python Version (if applicable) : 3.6.9

I use a .py to realize onnx to trt, error:

trt version 8.2.1.8

[03/18/2022-16:54:16] [TRT] [W] onnx2trt_utils.cpp:366: Your ONNX model has been generated with INT64 weights, while TensorRT does not natively support INT64. Attempting to cast down to INT32.

[03/18/2022-16:54:16] [TRT] [W] onnx2trt_utils.cpp:392: One or more weights outside the range of INT32 was clamped

[03/18/2022-16:54:18] [TRT] [E] 2: [utils.cpp::checkMemLimit::380] Error Code 2: Internal Error (Assertion upperBound != 0 failed. Unknown embedded device detected. Please update the table with the entry: {{1794, 6, 16}, 12653},)

Traceback (most recent call last):

  File "tools/export_trt.py", line 77, in <module>

    f.write(engine.serialize())

AttributeError: 'NoneType' object has no attribute 'serialize'

.py:

import tensorrt as trt
import sys
import argparse

"""
takes in onnx model
converts to tensorrt
"""

if __name__ == '__main__':

    desc = 'compile Onnx model to TensorRT'
    parser = argparse.ArgumentParser(description=desc)
    parser.add_argument('--model', help='onnx file')
    parser.add_argument('--out', type=str, default='', help='name of trt output file')
    parser.add_argument('--fp', type=int, default=16, help='floating point precision. 16 or 32')
    parser.add_argument('--batch', type=int, default=1)
    parser.add_argument('--verbose', action='store_true')
    parser.add_argument('--jetson_nano', action='store_true')
    opt = parser.parse_args()
    
    batch_size = opt.batch
    model = opt.model
    fp = opt.fp
    output = opt.out if opt.out else opt.model.replace('.onnx', '.trt')
    assert fp in (16, 32)

    if opt.jetson_nano:
        workspace = 1 << 28
    else:
        workspace = 4 * 1 << 30
    
    logger = trt.Logger(trt.Logger.WARNING)
    if opt.verbose:
        logger.min_severity = trt.Logger.VERBOSE
    
    print('trt version', trt.__version__)
    assert trt.__version__[0] >= '7'
    EXPLICIT_BATCH = 1 << (int)(trt.NetworkDefinitionCreationFlag.EXPLICIT_BATCH)

    with trt.Builder(logger) as builder, builder.create_network(EXPLICIT_BATCH) as network, trt.OnnxParser(network, logger) as parser:
        if trt.__version__[0] == '7':
            builder.max_workspace_size = workspace
            builder.max_batch_size = batch_size
            if fp == 16:
                builder.fp16_mode = True

            with open(model, 'rb') as f:
                if not parser.parse(f.read()):
                    for error in range(parser.num_errors):
                        print('ERROR', parser.get_error(error))
            
            # if your onnx has a dynamic input...
            # network.get_input(0).shape = [1, 3, 352, 608]
            
            engine = builder.build_cuda_engine(network)
            with open(output, 'wb') as f:
                f.write(engine.serialize())
            print('Done')
        else:
            # https://github.com/NVIDIA-AI-IOT/torch2trt/issues/557
            # https://github.com/NVIDIA-AI-IOT/torch2trt/commit/8f742904d603fcde4fe521baa31bdc18002c23cb#diff-f682ce583d8646e112002fb3631f7d205b63aae7b0ca673b020fed7244d4ed38
            
            config = builder.create_builder_config()
            config.max_workspace_size = workspace
            if fp == 16:
                config.set_flag(trt.BuilderFlag.FP16)
            builder.max_batch_size = batch_size
            
            with open(model, 'rb') as f:
                if not parser.parse(f.read()):
                    for error in range(parser.num_errors):
                        print('ERROR', parser.get_error(error))
                        
            engine = builder.build_engine(network, config)
            with open(output, 'wb') as f:
                f.write(engine.serialize())
            print('Done')

It could not work in trtexec.
jetson nano developkit with jetpack4.6.1 can run it.
I get the verbose:

fwav@ubuntu:/usr/src/tensorrt/bin$ ./trtexec --onnx=/media/fwav/1706-63D2/yolo-fastestv2.onnx  --saveEngine=/media/fwav/1706-63D2/test.trt
&&&& RUNNING TensorRT.trtexec [TensorRT v8201] # ./trtexec --onnx=/media/fwav/1706-63D2/yolo-fastestv2.onnx --saveEngine=/media/fwav/1706-63D2/test.trt
[03/21/2022-15:24:04] [I] === Model Options ===
[03/21/2022-15:24:04] [I] Format: ONNX
[03/21/2022-15:24:04] [I] Model: /media/fwav/1706-63D2/yolo-fastestv2.onnx
[03/21/2022-15:24:04] [I] Output:
[03/21/2022-15:24:04] [I] === Build Options ===
[03/21/2022-15:24:04] [I] Max batch: explicit batch
[03/21/2022-15:24:04] [I] Workspace: 16 MiB
[03/21/2022-15:24:04] [I] minTiming: 1
[03/21/2022-15:24:04] [I] avgTiming: 8
[03/21/2022-15:24:04] [I] Precision: FP32
[03/21/2022-15:24:04] [I] Calibration: 
[03/21/2022-15:24:04] [I] Refit: Disabled
[03/21/2022-15:24:04] [I] Sparsity: Disabled
[03/21/2022-15:24:04] [I] Safe mode: Disabled
[03/21/2022-15:24:04] [I] DirectIO mode: Disabled
[03/21/2022-15:24:04] [I] Restricted mode: Disabled
[03/21/2022-15:24:04] [I] Save engine: /media/fwav/1706-63D2/test.trt
[03/21/2022-15:24:04] [I] Load engine: 
[03/21/2022-15:24:04] [I] Profiling verbosity: 0
[03/21/2022-15:24:04] [I] Tactic sources: Using default tactic sources
[03/21/2022-15:24:04] [I] timingCacheMode: local
[03/21/2022-15:24:04] [I] timingCacheFile: 
[03/21/2022-15:24:04] [I] Input(s)s format: fp32:CHW
[03/21/2022-15:24:04] [I] Output(s)s format: fp32:CHW
[03/21/2022-15:24:04] [I] Input build shapes: model
[03/21/2022-15:24:04] [I] Input calibration shapes: model
[03/21/2022-15:24:04] [I] === System Options ===
[03/21/2022-15:24:04] [I] Device: 0
[03/21/2022-15:24:04] [I] DLACore: 
[03/21/2022-15:24:04] [I] Plugins:
[03/21/2022-15:24:04] [I] === Inference Options ===
[03/21/2022-15:24:04] [I] Batch: Explicit
[03/21/2022-15:24:04] [I] Input inference shapes: model
[03/21/2022-15:24:04] [I] Iterations: 10
[03/21/2022-15:24:04] [I] Duration: 3s (+ 200ms warm up)
[03/21/2022-15:24:04] [I] Sleep time: 0ms
[03/21/2022-15:24:04] [I] Idle time: 0ms
[03/21/2022-15:24:04] [I] Streams: 1
[03/21/2022-15:24:04] [I] ExposeDMA: Disabled
[03/21/2022-15:24:04] [I] Data transfers: Enabled
[03/21/2022-15:24:04] [I] Spin-wait: Disabled
[03/21/2022-15:24:04] [I] Multithreading: Disabled
[03/21/2022-15:24:04] [I] CUDA Graph: Disabled
[03/21/2022-15:24:04] [I] Separate profiling: Disabled
[03/21/2022-15:24:04] [I] Time Deserialize: Disabled
[03/21/2022-15:24:04] [I] Time Refit: Disabled
[03/21/2022-15:24:04] [I] Skip inference: Disabled
[03/21/2022-15:24:04] [I] Inputs:
[03/21/2022-15:24:04] [I] === Reporting Options ===
[03/21/2022-15:24:04] [I] Verbose: Disabled
[03/21/2022-15:24:04] [I] Averages: 10 inferences
[03/21/2022-15:24:04] [I] Percentile: 99
[03/21/2022-15:24:04] [I] Dump refittable layers:Disabled
[03/21/2022-15:24:04] [I] Dump output: Disabled
[03/21/2022-15:24:04] [I] Profile: Disabled
[03/21/2022-15:24:04] [I] Export timing to JSON file: 
[03/21/2022-15:24:04] [I] Export output to JSON file: 
[03/21/2022-15:24:04] [I] Export profile to JSON file: 
[03/21/2022-15:24:04] [I] 
[03/21/2022-15:24:04] [I] === Device Information ===
[03/21/2022-15:24:04] [I] Selected Device: Xavier
[03/21/2022-15:24:04] [I] Compute Capability: 7.2
[03/21/2022-15:24:04] [I] SMs: 6
[03/21/2022-15:24:04] [I] Compute Clock Rate: 1.109 GHz
[03/21/2022-15:24:04] [I] Device Global Memory: 15825 MiB
[03/21/2022-15:24:04] [I] Shared Memory per SM: 96 KiB
[03/21/2022-15:24:04] [I] Memory Bus Width: 256 bits (ECC disabled)
[03/21/2022-15:24:04] [I] Memory Clock Rate: 1.109 GHz
[03/21/2022-15:24:04] [I] 
[03/21/2022-15:24:04] [I] TensorRT version: 8.2.1
[03/21/2022-15:24:06] [I] [TRT] [MemUsageChange] Init CUDA: CPU +362, GPU +0, now: CPU 381, GPU 4022 (MiB)
[03/21/2022-15:24:06] [I] [TRT] [MemUsageSnapshot] Begin constructing builder kernel library: CPU 381 MiB, GPU 4022 MiB
[03/21/2022-15:24:06] [I] [TRT] [MemUsageSnapshot] End constructing builder kernel library: CPU 486 MiB, GPU 4127 MiB
[03/21/2022-15:24:06] [I] Start parsing network model
[03/21/2022-15:24:06] [I] [TRT] ----------------------------------------------------------------
[03/21/2022-15:24:06] [I] [TRT] Input filename:   /media/fwav/1706-63D2/yolo-fastestv2.onnx
[03/21/2022-15:24:06] [I] [TRT] ONNX IR version:  0.0.6
[03/21/2022-15:24:06] [I] [TRT] Opset version:    11
[03/21/2022-15:24:06] [I] [TRT] Producer name:    pytorch
[03/21/2022-15:24:06] [I] [TRT] Producer version: 1.9
[03/21/2022-15:24:06] [I] [TRT] Domain:           
[03/21/2022-15:24:06] [I] [TRT] Model version:    0
[03/21/2022-15:24:06] [I] [TRT] Doc string:       
[03/21/2022-15:24:06] [I] [TRT] ----------------------------------------------------------------
[03/21/2022-15:24:06] [W] [TRT] onnx2trt_utils.cpp:366: Your ONNX model has been generated with INT64 weights, while TensorRT does not natively support INT64. Attempting to cast down to INT32.
[03/21/2022-15:24:07] [I] Finish parsing network model
[03/21/2022-15:24:07] [I] [TRT] ---------- Layers Running on DLA ----------
[03/21/2022-15:24:07] [I] [TRT] ---------- Layers Running on GPU ----------
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_0 + Relu_1
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] MaxPool_2
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_6 + Relu_7
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_3
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_4
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_8
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_9
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[Relu_5...Gather_20]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_21 + Relu_22
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_23
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_24
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[468...Gather_35]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_36 + Relu_37
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_38
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_39
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[486...Gather_48]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_51 + Relu_52
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_53
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_54 + Relu_55
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] 505 copy
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_60 + Relu_61
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_57
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_58
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_62
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_63
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[Relu_59...Gather_74]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_75 + Relu_76
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_77
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_78
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[536...Gather_89]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_90 + Relu_91
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_92
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_93
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[554...Gather_104]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_105 + Relu_106
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_107
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_108
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[572...Gather_119]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_120 + Relu_121
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_122
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_123
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[590...Gather_134]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_135 + Relu_136
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_137
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_138
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[608...Gather_149]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_150 + Relu_151
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_152
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_153
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[626...Gather_162]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_165 + Relu_166
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_167
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_168 + Relu_169
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] 645 copy
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_174 + Relu_175
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_171
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_172
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_176
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_177
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[Relu_173...Gather_188]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_189 + Relu_190
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_191
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_192
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[676...Gather_203]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_204 + Relu_205
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_206
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_207
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] {ForeignNode[694...Gather_216]}
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_219 + Relu_220
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_221
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_222 + Relu_223
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] 713 copy
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Resize_240
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_225 + Relu_226
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] 752 copy
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_233 + Relu_234
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_227 + Relu_228
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_242 + Relu_243
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_250 + Relu_251
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_244 + Relu_245
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_229
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_230 + Relu_231
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_235
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_236 + Relu_237
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_238
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_259
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] PWN(Sigmoid_267)
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_232
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_261 || Conv_260
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Transpose_269 + (Unnamed Layer* 245) [Shuffle]
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Softmax_270
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] (Unnamed Layer* 247) [Shuffle] + Transpose_271
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] PWN(Sigmoid_268)
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] 789 copy
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Transpose_275
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_246
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_247 + Relu_248
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_252
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_253 + Relu_254
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_255
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_256
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] PWN(Sigmoid_262)
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_249
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Conv_258 || Conv_257
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Transpose_264 + (Unnamed Layer* 238) [Shuffle]
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Softmax_265
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] (Unnamed Layer* 240) [Shuffle] + Transpose_266
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] PWN(Sigmoid_263)
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] 784 copy
[03/21/2022-15:24:07] [I] [TRT] [GpuLayer] Transpose_273
[03/21/2022-15:24:08] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +227, GPU +228, now: CPU 715, GPU 4359 (MiB)
[03/21/2022-15:24:09] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +307, GPU +322, now: CPU 1022, GPU 4681 (MiB)
[03/21/2022-15:24:09] [I] [TRT] Local timing cache in use. Profiling results in this builder pass will not be stored.
[03/21/2022-15:24:09] [E] Error[2]: [utils.cpp::checkMemLimit::380] Error Code 2: Internal Error (Assertion upperBound != 0 failed. Unknown embedded device detected. Please update the table with the entry: {{1794, 6, 16}, 12660},)
[03/21/2022-15:24:09] [E] Error[2]: [builder.cpp::buildSerializedNetwork::609] Error Code 2: Internal Error (Assertion enginePtr != nullptr failed. )
[03/21/2022-15:24:09] [E] Engine could not be created from network
[03/21/2022-15:24:09] [E] Building engine failed
[03/21/2022-15:24:09] [E] Failed to create engine from model.
[03/21/2022-15:24:09] [E] Engine set up failed
&&&& FAILED TensorRT.trtexec [TensorRT v8201] # ./trtexec --onnx=/media/fwav/1706-63D2/yolo-fastestv2.onnx --saveEngine=/media/fwav/1706-63D2/test.trt

it can work in jetson nano with jetpack4.5, shell I install jetpack 4.5 to nx?

Hi,

This sounds like a regression issue to us.
Would you mind sharing the ONNX model with us so we can check it further?

Thanks.

ace-8-best.onnx (2.8 MB)
Hi,thanks for your help.
I have uploaded the onxx model.
I revert successfully in jetson nano with jetpack 4.6.1 (tensortRT 8.0), and copy the .trt to nx, the error is also appearing when running the detect demo.

Thanks.
Will share more information with you later.

Hi,

We test your model with XavierNX+JetPack4.6.1.
It can run normally with the trtexec tool.

Do you meet the error with this model?

$ /usr/src/tensorrt/bin/trtexec --onnx=ace-8-best.onnx
&&&& RUNNING TensorRT.trtexec [TensorRT v8201] # /usr/src/tensorrt/bin/trtexec --onnx=ace-8-best.onnx
[03/22/2022-13:23:54] [I] === Model Options ===
[03/22/2022-13:23:54] [I] Format: ONNX
[03/22/2022-13:23:54] [I] Model: ace-8-best.onnx
[03/22/2022-13:23:54] [I] Output:
[03/22/2022-13:23:54] [I] === Build Options ===
[03/22/2022-13:23:54] [I] Max batch: explicit batch
[03/22/2022-13:23:54] [I] Workspace: 16 MiB
[03/22/2022-13:23:54] [I] minTiming: 1
[03/22/2022-13:23:54] [I] avgTiming: 8
[03/22/2022-13:23:54] [I] Precision: FP32
[03/22/2022-13:23:54] [I] Calibration:
[03/22/2022-13:23:54] [I] Refit: Disabled
[03/22/2022-13:23:54] [I] Sparsity: Disabled
[03/22/2022-13:23:54] [I] Safe mode: Disabled
[03/22/2022-13:23:54] [I] DirectIO mode: Disabled
[03/22/2022-13:23:54] [I] Restricted mode: Disabled
[03/22/2022-13:23:54] [I] Save engine:
[03/22/2022-13:23:54] [I] Load engine:
[03/22/2022-13:23:54] [I] Profiling verbosity: 0
[03/22/2022-13:23:54] [I] Tactic sources: Using default tactic sources
[03/22/2022-13:23:54] [I] timingCacheMode: local
[03/22/2022-13:23:54] [I] timingCacheFile:
[03/22/2022-13:23:54] [I] Input(s)s format: fp32:CHW
[03/22/2022-13:23:54] [I] Output(s)s format: fp32:CHW
[03/22/2022-13:23:54] [I] Input build shapes: model
[03/22/2022-13:23:54] [I] Input calibration shapes: model
[03/22/2022-13:23:54] [I] === System Options ===
[03/22/2022-13:23:54] [I] Device: 0
[03/22/2022-13:23:54] [I] DLACore:
[03/22/2022-13:23:54] [I] Plugins:
[03/22/2022-13:23:54] [I] === Inference Options ===
[03/22/2022-13:23:54] [I] Batch: Explicit
[03/22/2022-13:23:54] [I] Input inference shapes: model
[03/22/2022-13:23:54] [I] Iterations: 10
[03/22/2022-13:23:54] [I] Duration: 3s (+ 200ms warm up)
[03/22/2022-13:23:54] [I] Sleep time: 0ms
[03/22/2022-13:23:54] [I] Idle time: 0ms
[03/22/2022-13:23:54] [I] Streams: 1
[03/22/2022-13:23:54] [I] ExposeDMA: Disabled
[03/22/2022-13:23:54] [I] Data transfers: Enabled
[03/22/2022-13:23:54] [I] Spin-wait: Disabled
[03/22/2022-13:23:54] [I] Multithreading: Disabled
[03/22/2022-13:23:54] [I] CUDA Graph: Disabled
[03/22/2022-13:23:54] [I] Separate profiling: Disabled
[03/22/2022-13:23:54] [I] Time Deserialize: Disabled
[03/22/2022-13:23:54] [I] Time Refit: Disabled
[03/22/2022-13:23:54] [I] Skip inference: Disabled
[03/22/2022-13:23:54] [I] Inputs:
[03/22/2022-13:23:54] [I] === Reporting Options ===
[03/22/2022-13:23:54] [I] Verbose: Disabled
[03/22/2022-13:23:54] [I] Averages: 10 inferences
[03/22/2022-13:23:54] [I] Percentile: 99
[03/22/2022-13:23:54] [I] Dump refittable layers:Disabled
[03/22/2022-13:23:54] [I] Dump output: Disabled
[03/22/2022-13:23:54] [I] Profile: Disabled
[03/22/2022-13:23:54] [I] Export timing to JSON file:
[03/22/2022-13:23:54] [I] Export output to JSON file:
[03/22/2022-13:23:54] [I] Export profile to JSON file:
[03/22/2022-13:23:54] [I]
[03/22/2022-13:23:54] [I] === Device Information ===
[03/22/2022-13:23:54] [I] Selected Device: Xavier
[03/22/2022-13:23:54] [I] Compute Capability: 7.2
[03/22/2022-13:23:54] [I] SMs: 6
[03/22/2022-13:23:54] [I] Compute Clock Rate: 1.109 GHz
[03/22/2022-13:23:54] [I] Device Global Memory: 7765 MiB
[03/22/2022-13:23:54] [I] Shared Memory per SM: 96 KiB
[03/22/2022-13:23:54] [I] Memory Bus Width: 256 bits (ECC disabled)
[03/22/2022-13:23:54] [I] Memory Clock Rate: 1.109 GHz
[03/22/2022-13:23:54] [I]
[03/22/2022-13:23:54] [I] TensorRT version: 8.2.1
[03/22/2022-13:23:57] [I] [TRT] [MemUsageChange] Init CUDA: CPU +362, GPU +0, now: CPU 381, GPU 7360 (MiB)
[03/22/2022-13:23:57] [I] [TRT] [MemUsageSnapshot] Begin constructing builder kernel library: CPU 381 MiB, GPU 7385 MiB
[03/22/2022-13:23:58] [I] [TRT] [MemUsageSnapshot] End constructing builder kernel library: CPU 486 MiB, GPU 7490 MiB
[03/22/2022-13:23:58] [I] Start parsing network model
[03/22/2022-13:23:58] [I] [TRT] ----------------------------------------------------------------
[03/22/2022-13:23:58] [I] [TRT] Input filename:   ace-8-best.onnx
[03/22/2022-13:23:58] [I] [TRT] ONNX IR version:  0.0.6
[03/22/2022-13:23:58] [I] [TRT] Opset version:    12
[03/22/2022-13:23:58] [I] [TRT] Producer name:    pytorch
[03/22/2022-13:23:58] [I] [TRT] Producer version: 1.7
[03/22/2022-13:23:58] [I] [TRT] Domain:
[03/22/2022-13:23:58] [I] [TRT] Model version:    0
[03/22/2022-13:23:58] [I] [TRT] Doc string:
[03/22/2022-13:23:58] [I] [TRT] ----------------------------------------------------------------
[03/22/2022-13:23:58] [W] [TRT] onnx2trt_utils.cpp:366: Your ONNX model has been generated with INT64 weights, while TensorRT does not natively support INT64. Attempting to cast down to INT32.
[03/22/2022-13:23:58] [W] [TRT] onnx2trt_utils.cpp:392: One or more weights outside the range of INT32 was clamped
[03/22/2022-13:23:58] [I] Finish parsing network model
[03/22/2022-13:23:58] [I] [TRT] ---------- Layers Running on DLA ----------
[03/22/2022-13:23:58] [I] [TRT] ---------- Layers Running on GPU ----------
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_4
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_9
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_14
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_19
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_24
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_29
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_34
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_39
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_41
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_42), Mul_43)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_44
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_45), Mul_46)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_47 || Conv_57
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_48), Mul_49)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_50
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_51), Mul_52)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_53
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_54), Mul_55), Add_56)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_58), Mul_59)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_61
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_62), Mul_63)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_64
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_65), Mul_66)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_67 || Conv_91
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_68), Mul_69)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_70
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_71), Mul_72)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_73
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_74), Mul_75), Add_76)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_77
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_78), Mul_79)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_80
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_81), Mul_82), Add_83)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_84
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_85), Mul_86)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_87
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_88), Mul_89), Add_90)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_92), Mul_93)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_95
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_96), Mul_97)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_98
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_99), Mul_100)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_101
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_102), Mul_103)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] MaxPool_104
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] MaxPool_105
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] MaxPool_106
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 183 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 184 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 185 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 186 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_108
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_109), Mul_110)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_111 || Conv_120
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_112), Mul_113)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_114
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_115), Mul_116)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_117
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_118), Mul_119)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_121), Mul_122)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_124
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_125), Mul_126)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_127
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_128), Mul_129)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Resize_131
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 214 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_133 || Conv_142
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_134), Mul_135)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_136
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_137), Mul_138)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_139
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_140), Mul_141)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_143), Mul_144)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_146
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_147), Mul_148)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_149
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_150), Mul_151)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 209 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_153 || Conv_162
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_154), Mul_155)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_156
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_157), Mul_158)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_159
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_160), Mul_161)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_163), Mul_164)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_166
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_167), Mul_168)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_169
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_183 + Transpose_184
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(Sigmoid_185)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_190
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 282
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(280 + (Unnamed Layer* 145) [Shuffle], PWN(278 + (Unnamed Layer* 142) [Shuffle] + Mul_192, Sub_194)), Add_196), 284 + (Unnamed Layer* 150) [Shuffle] + Mul_198)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_203
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 295
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(278_2 + (Unnamed Layer* 157) [Shuffle], PWN(278_1 + (Unnamed Layer* 154) [Shuffle] + Mul_205, Pow_207)), Mul_209)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_214
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 285 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 296 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 301 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_218
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_219
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_233 + Transpose_234
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(Sigmoid_235)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_240
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 340
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(280_5 + (Unnamed Layer* 173) [Shuffle], PWN(278_4 + (Unnamed Layer* 170) [Shuffle] + Mul_242, Sub_244)), Add_246), 342 + (Unnamed Layer* 178) [Shuffle] + Mul_248)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_253
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 353
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(278_7 + (Unnamed Layer* 185) [Shuffle], PWN(278_6 + (Unnamed Layer* 182) [Shuffle] + Mul_255, Pow_257)), Mul_259)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_264
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 343 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 354 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 359 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_268
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 309 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 367 copy
[03/22/2022-13:23:59] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +226, GPU -130, now: CPU 716, GPU 7370 (MiB)
[03/22/2022-13:24:01] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +308, GPU +49, now: CPU 1024, GPU 7418 (MiB)
[03/22/2022-13:24:01] [I] [TRT] Local timing cache in use. Profiling results in this builder pass will not be stored.
[03/22/2022-13:24:19] [I] [TRT] Some tactics do not have sufficient workspace memory to run. Increasing workspace size may increase performance, please check verbose output.
[03/22/2022-13:29:59] [I] [TRT] Detected 1 inputs and 5 output network tensors.
[03/22/2022-13:29:59] [I] [TRT] Total Host Persistent Memory: 86944
[03/22/2022-13:29:59] [I] [TRT] Total Device Persistent Memory: 5606400
[03/22/2022-13:29:59] [I] [TRT] Total Scratch Memory: 0
[03/22/2022-13:29:59] [I] [TRT] [MemUsageStats] Peak memory usage of TRT CPU/GPU memory allocators: CPU 0 MiB, GPU 153 MiB
[03/22/2022-13:29:59] [I] [TRT] [BlockAssignment] Algorithm ShiftNTopDown took 24.8095ms to assign 6 blocks to 92 nodes requiring 49545216 bytes.
[03/22/2022-13:29:59] [I] [TRT] Total Activation Memory: 49545216
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 1492, GPU 7642 (MiB)
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +1, GPU +0, now: CPU 1493, GPU 7642 (MiB)
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] TensorRT-managed allocation in building engine: CPU +0, GPU +8, now: CPU 0, GPU 8 (MiB)
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] Init CUDA: CPU +0, GPU +0, now: CPU 1486, GPU 7643 (MiB)
[03/22/2022-13:29:59] [I] [TRT] Loaded engine size: 6 MiB
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 1491, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +0, GPU +0, now: CPU 1491, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +5, now: CPU 0, GPU 5 (MiB)
[03/22/2022-13:30:00] [I] Engine built in 365.801 sec.
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 1383, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +0, GPU +0, now: CPU 1383, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +53, now: CPU 0, GPU 58 (MiB)
[03/22/2022-13:30:00] [I] Using random values for input images
[03/22/2022-13:30:00] [I] Created input binding for images with dimensions 1x3x576x1024
[03/22/2022-13:30:00] [I] Using random values for output 271
[03/22/2022-13:30:00] [I] Created output binding for 271 with dimensions 1x4x72x128x7
[03/22/2022-13:30:00] [I] Using random values for output 329
[03/22/2022-13:30:00] [I] Created output binding for 329 with dimensions 1x4x36x64x7
[03/22/2022-13:30:00] [I] Using random values for output output
[03/22/2022-13:30:00] [I] Created output binding for output with dimensions 1x46080x7
[03/22/2022-13:30:00] [I] Starting inference
[03/22/2022-13:30:03] [I] Warmup completed 10 queries over 200 ms
[03/22/2022-13:30:03] [I] Timing trace has 137 queries over 3.03627 s
[03/22/2022-13:30:03] [I]
[03/22/2022-13:30:03] [I] === Trace details ===
[03/22/2022-13:30:03] [I] Trace averages of 10 runs:
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.3331 ms - Host latency: 20.7671 ms (end to end 20.7771 ms, enqueue 1.60662 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.2344 ms - Host latency: 20.6647 ms (end to end 20.673 ms, enqueue 1.42271 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.278 ms - Host latency: 20.7075 ms (end to end 20.7159 ms, enqueue 1.41272 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.3264 ms - Host latency: 20.754 ms (end to end 20.7634 ms, enqueue 1.28146 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.4199 ms - Host latency: 21.8628 ms (end to end 21.8704 ms, enqueue 1.74171 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.236 ms - Host latency: 21.6648 ms (end to end 21.6722 ms, enqueue 1.35037 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.3434 ms - Host latency: 21.7727 ms (end to end 21.7803 ms, enqueue 1.38673 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 22.2484 ms - Host latency: 22.688 ms (end to end 22.6973 ms, enqueue 1.53107 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 24.2647 ms - Host latency: 24.7107 ms (end to end 24.7188 ms, enqueue 2.03612 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 24.3059 ms - Host latency: 24.763 ms (end to end 24.7763 ms, enqueue 2.10566 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 23.3107 ms - Host latency: 23.7685 ms (end to end 23.8416 ms, enqueue 1.88408 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.3281 ms - Host latency: 21.7574 ms (end to end 21.7663 ms, enqueue 1.44998 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.6798 ms - Host latency: 22.11 ms (end to end 22.1181 ms, enqueue 1.44072 ms)
[03/22/2022-13:30:03] [I]
[03/22/2022-13:30:03] [I] === Performance summary ===
[03/22/2022-13:30:03] [I] Throughput: 45.1211 qps
[03/22/2022-13:30:03] [I] Latency: min = 20.5559 ms, max = 26.9751 ms, mean = 22.1483 ms, median = 21.713 ms, percentile(99%) = 26.3925 ms
[03/22/2022-13:30:03] [I] End-to-End Host Latency: min = 20.5636 ms, max = 27.1487 ms, mean = 22.1618 ms, median = 21.7196 ms, percentile(99%) = 26.3988 ms
[03/22/2022-13:30:03] [I] Enqueue Time: min = 1.18311 ms, max = 4.82983 ms, mean = 1.5932 ms, median = 1.46973 ms, percentile(99%) = 3.27307 ms
[03/22/2022-13:30:03] [I] H2D Latency: min = 0.295166 ms, max = 0.400879 ms, mean = 0.308775 ms, median = 0.303894 ms, percentile(99%) = 0.352295 ms
[03/22/2022-13:30:03] [I] GPU Compute Time: min = 20.1292 ms, max = 26.4944 ms, mean = 21.7113 ms, median = 21.2781 ms, percentile(99%) = 25.9492 ms
[03/22/2022-13:30:03] [I] D2H Latency: min = 0.116943 ms, max = 0.174683 ms, mean = 0.12821 ms, median = 0.126953 ms, percentile(99%) = 0.165649 ms
[03/22/2022-13:30:03] [I] Total Host Walltime: 3.03627 s
[03/22/2022-13:30:03] [I] Total GPU Compute Time: 2.97445 s
[03/22/2022-13:30:03] [I] Explanations of the performance metrics are printed in the verbose logs.
[03/22/2022-13:30:03] [I]
&&&& PASSED TensorRT.trtexec [TensorRT v8201] # /usr/src/tensorrt/bin/trtexec --onnx=ace-8-best.onnx

Thanks.

Hi.I do same but error occured.

fwav@ubuntu:/usr/src/tensorrt/bin$ ./trtexec --onnx=/media/fwav/1706-63D2/JZ/acecombat/weights/ace-8-best.onnx

&&&& RUNNING TensorRT.trtexec [TensorRT v8201] # ./trtexec --onnx=/media/fwav/1706-63D2/JZ/acecombat/weights/ace-8-best.onnx

[03/22/2022-15:22:41] [I] === Model Options ===

[03/22/2022-15:22:41] [I] Format: ONNX

[03/22/2022-15:22:41] [I] Model: /media/fwav/1706-63D2/JZ/acecombat/weights/ace-8-best.onnx

[03/22/2022-15:22:41] [I] Output:

[03/22/2022-15:22:41] [I] === Build Options ===

[03/22/2022-15:22:41] [I] Max batch: explicit batch

[03/22/2022-15:22:41] [I] Workspace: 16 MiB

[03/22/2022-15:22:41] [I] minTiming: 1

[03/22/2022-15:22:41] [I] avgTiming: 8

[03/22/2022-15:22:41] [I] Precision: FP32

[03/22/2022-15:22:41] [I] Calibration: 

[03/22/2022-15:22:41] [I] Refit: Disabled

[03/22/2022-15:22:41] [I] Sparsity: Disabled

[03/22/2022-15:22:41] [I] Safe mode: Disabled

[03/22/2022-15:22:41] [I] DirectIO mode: Disabled

[03/22/2022-15:22:41] [I] Restricted mode: Disabled

[03/22/2022-15:22:41] [I] Save engine: 

[03/22/2022-15:22:41] [I] Load engine: 

[03/22/2022-15:22:41] [I] Profiling verbosity: 0

[03/22/2022-15:22:41] [I] Tactic sources: Using default tactic sources

[03/22/2022-15:22:41] [I] timingCacheMode: local

[03/22/2022-15:22:41] [I] timingCacheFile: 

[03/22/2022-15:22:41] [I] Input(s)s format: fp32:CHW

[03/22/2022-15:22:41] [I] Output(s)s format: fp32:CHW

[03/22/2022-15:22:41] [I] Input build shapes: model

[03/22/2022-15:22:41] [I] Input calibration shapes: model

[03/22/2022-15:22:41] [I] === System Options ===

[03/22/2022-15:22:41] [I] Device: 0

[03/22/2022-15:22:41] [I] DLACore: 

[03/22/2022-15:22:41] [I] Plugins:

[03/22/2022-15:22:41] [I] === Inference Options ===

[03/22/2022-15:22:41] [I] Batch: Explicit

[03/22/2022-15:22:41] [I] Input inference shapes: model

[03/22/2022-15:22:41] [I] Iterations: 10

[03/22/2022-15:22:41] [I] Duration: 3s (+ 200ms warm up)

[03/22/2022-15:22:41] [I] Sleep time: 0ms

[03/22/2022-15:22:41] [I] Idle time: 0ms

[03/22/2022-15:22:41] [I] Streams: 1

[03/22/2022-15:22:41] [I] ExposeDMA: Disabled

[03/22/2022-15:22:41] [I] Data transfers: Enabled

[03/22/2022-15:22:41] [I] Spin-wait: Disabled

[03/22/2022-15:22:41] [I] Multithreading: Disabled

[03/22/2022-15:22:41] [I] CUDA Graph: Disabled

[03/22/2022-15:22:41] [I] Separate profiling: Disabled

[03/22/2022-15:22:41] [I] Time Deserialize: Disabled

[03/22/2022-15:22:41] [I] Time Refit: Disabled

[03/22/2022-15:22:41] [I] Skip inference: Disabled

[03/22/2022-15:22:41] [I] Inputs:

[03/22/2022-15:22:41] [I] === Reporting Options ===

[03/22/2022-15:22:41] [I] Verbose: Disabled

[03/22/2022-15:22:41] [I] Averages: 10 inferences

[03/22/2022-15:22:41] [I] Percentile: 99

[03/22/2022-15:22:41] [I] Dump refittable layers:Disabled

[03/22/2022-15:22:41] [I] Dump output: Disabled

[03/22/2022-15:22:41] [I] Profile: Disabled

[03/22/2022-15:22:41] [I] Export timing to JSON file: 

[03/22/2022-15:22:41] [I] Export output to JSON file: 

[03/22/2022-15:22:41] [I] Export profile to JSON file: 

[03/22/2022-15:22:41] [I] 

[03/22/2022-15:22:41] [I] === Device Information ===

[03/22/2022-15:22:41] [I] Selected Device: Xavier

[03/22/2022-15:22:41] [I] Compute Capability: 7.2

[03/22/2022-15:22:41] [I] SMs: 6

[03/22/2022-15:22:41] [I] Compute Clock Rate: 1.109 GHz

[03/22/2022-15:22:41] [I] Device Global Memory: 15817 MiB

[03/22/2022-15:22:41] [I] Shared Memory per SM: 96 KiB

[03/22/2022-15:22:41] [I] Memory Bus Width: 256 bits (ECC disabled)

[03/22/2022-15:22:41] [I] Memory Clock Rate: 1.109 GHz

[03/22/2022-15:22:41] [I] 

[03/22/2022-15:22:41] [I] TensorRT version: 8.2.1

[03/22/2022-15:22:44] [I] [TRT] [MemUsageChange] Init CUDA: CPU +362, GPU +0, now: CPU 381, GPU 4657 (MiB)

[03/22/2022-15:22:44] [I] [TRT] [MemUsageSnapshot] Begin constructing builder kernel library: CPU 381 MiB, GPU 4657 MiB

[03/22/2022-15:22:45] [I] [TRT] [MemUsageSnapshot] End constructing builder kernel library: CPU 486 MiB, GPU 4785 MiB

[03/22/2022-15:22:45] [I] Start parsing network model

[03/22/2022-15:22:45] [I] [TRT] ----------------------------------------------------------------

[03/22/2022-15:22:45] [I] [TRT] Input filename:   /media/fwav/1706-63D2/JZ/acecombat/weights/ace-8-best.onnx

[03/22/2022-15:22:45] [I] [TRT] ONNX IR version:  0.0.6

[03/22/2022-15:22:45] [I] [TRT] Opset version:    12

[03/22/2022-15:22:45] [I] [TRT] Producer name:    pytorch

[03/22/2022-15:22:45] [I] [TRT] Producer version: 1.7

[03/22/2022-15:22:45] [I] [TRT] Domain:           

[03/22/2022-15:22:45] [I] [TRT] Model version:    0

[03/22/2022-15:22:45] [I] [TRT] Doc string:       

[03/22/2022-15:22:45] [I] [TRT] ----------------------------------------------------------------

[03/22/2022-15:22:45] [W] [TRT] onnx2trt_utils.cpp:366: Your ONNX model has been generated with INT64 weights, while TensorRT does not natively support INT64. Attempting to cast down to INT32.

[03/22/2022-15:22:45] [W] [TRT] onnx2trt_utils.cpp:392: One or more weights outside the range of INT32 was clamped

[03/22/2022-15:22:45] [I] Finish parsing network model

[03/22/2022-15:22:45] [I] [TRT] ---------- Layers Running on DLA ----------

[03/22/2022-15:22:45] [I] [TRT] ---------- Layers Running on GPU ----------

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_4

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_9

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_14

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_19

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_24

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_29

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_34

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_39

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_41

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_42), Mul_43)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_44

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_45), Mul_46)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_47 || Conv_57

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_48), Mul_49)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_50

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_51), Mul_52)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_53

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_54), Mul_55), Add_56)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_58), Mul_59)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_61

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_62), Mul_63)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_64

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_65), Mul_66)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_67 || Conv_91

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_68), Mul_69)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_70

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_71), Mul_72)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_73

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_74), Mul_75), Add_76)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_77

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_78), Mul_79)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_80

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_81), Mul_82), Add_83)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_84

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_85), Mul_86)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_87

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_88), Mul_89), Add_90)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_92), Mul_93)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_95

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_96), Mul_97)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_98

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_99), Mul_100)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_101

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_102), Mul_103)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] MaxPool_104

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] MaxPool_105

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] MaxPool_106

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 183 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 184 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 185 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 186 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_108

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_109), Mul_110)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_111 || Conv_120

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_112), Mul_113)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_114

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_115), Mul_116)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_117

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_118), Mul_119)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_121), Mul_122)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_124

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_125), Mul_126)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_127

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_128), Mul_129)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Resize_131

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 214 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_133 || Conv_142

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_134), Mul_135)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_136

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_137), Mul_138)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_139

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_140), Mul_141)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_143), Mul_144)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_146

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_147), Mul_148)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_149

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_150), Mul_151)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 209 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_153 || Conv_162

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_154), Mul_155)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_156

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_157), Mul_158)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_159

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_160), Mul_161)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_163), Mul_164)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_166

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_167), Mul_168)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_169

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Reshape_183 + Transpose_184

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(Sigmoid_185)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_190

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 282

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(PWN(280 + (Unnamed Layer* 145) [Shuffle], PWN(278 + (Unnamed Layer* 142) [Shuffle] + Mul_192, Sub_194)), Add_196), 284 + (Unnamed Layer* 150) [Shuffle] + Mul_198)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_203

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 295

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(278_2 + (Unnamed Layer* 157) [Shuffle], PWN(278_1 + (Unnamed Layer* 154) [Shuffle] + Mul_205, Pow_207)), Mul_209)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_214

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 285 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 296 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 301 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Reshape_218

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Conv_219

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Reshape_233 + Transpose_234

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(Sigmoid_235)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_240

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 340

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(PWN(280_5 + (Unnamed Layer* 173) [Shuffle], PWN(278_4 + (Unnamed Layer* 170) [Shuffle] + Mul_242, Sub_244)), Add_246), 342 + (Unnamed Layer* 178) [Shuffle] + Mul_248)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_253

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 353

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] PWN(PWN(278_7 + (Unnamed Layer* 185) [Shuffle], PWN(278_6 + (Unnamed Layer* 182) [Shuffle] + Mul_255, Pow_257)), Mul_259)

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Slice_264

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 343 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 354 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 359 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] Reshape_268

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 309 copy

[03/22/2022-15:22:45] [I] [TRT] [GpuLayer] 367 copy

[03/22/2022-15:22:46] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +226, GPU +377, now: CPU 716, GPU 5172 (MiB)

[03/22/2022-15:22:48] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +308, GPU +511, now: CPU 1024, GPU 5683 (MiB)

[03/22/2022-15:22:48] [I] [TRT] Local timing cache in use. Profiling results in this builder pass will not be stored.

[03/22/2022-15:22:48] [E] Error[2]: [utils.cpp::checkMemLimit::380] Error Code 2: Internal Error (Assertion upperBound != 0 failed. Unknown embedded device detected. Please update the table with the entry: {{1794, 6, 16}, 12653},)

[03/22/2022-15:22:48] [E] Error[2]: [builder.cpp::buildSerializedNetwork::609] Error Code 2: Internal Error (Assertion enginePtr != nullptr failed. )

[03/22/2022-15:22:48] [E] Engine could not be created from network

[03/22/2022-15:22:48] [E] Building engine failed

[03/22/2022-15:22:48] [E] Failed to create engine from model.

[03/22/2022-15:22:48] [E] Engine set up failed

&&&& FAILED TensorRT.trtexec [TensorRT v8201] # ./trtexec --onnx=/media/fwav/1706-63D2/JZ/acecombat/weights/ace-8-best.onnx

here is some else information

fwav@ubuntu:/media/fwav/1706-63D2$ sudo apt-cache show nvidia-jetpack
[sudo] password for fwav: 
Package: nvidia-jetpack
Version: 4.6.1-b110
Architecture: arm64
Maintainer: NVIDIA Corporation
Installed-Size: 194
Depends: nvidia-cuda (= 4.6.1-b110), nvidia-opencv (= 4.6.1-b110), nvidia-cudnn8 (= 4.6.1-b110), nvidia-tensorrt (= 4.6.1-b110), nvidia-visionworks (= 4.6.1-b110), nvidia-container (= 4.6.1-b110), nvidia-vpi (= 4.6.1-b110), nvidia-l4t-jetson-multimedia-api (>> 32.7-0), nvidia-l4t-jetson-multimedia-api (<< 32.8-0)
Homepage: http://developer.nvidia.com/jetson
Priority: standard
Section: metapackages
Filename: pool/main/n/nvidia-jetpack/nvidia-jetpack_4.6.1-b110_arm64.deb
Size: 29374
SHA256: 312e75d89d0837472668714c43590fd204a33b9c7727c542e1b5df367ec239c4
SHA1: 769cbf1c7acb9e39a4539879884a570bde12292c
MD5sum: a074f5225dfe8d7ea24560b15eef08d9
Description: NVIDIA Jetpack Meta Package
Description-md5: ad1462289bdbc54909ae109d1d32c0a8

fwav@ubuntu:/media/fwav/1706-63D2$ nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2021 NVIDIA Corporation
Built on Sun_Feb_28_22:34:44_PST_2021
Cuda compilation tools, release 10.2, V10.2.300
Build cuda_10.2_r440.TC440_70.29663091_0

hi, excuse me, I have replied in the topic, have you received?
Thanks for your help.

---- 回复的原邮件 ----

发件人 | AastaLLL via NVIDIA Developer Forumsnvidia@discoursemail.com |

  • | - |
    日期 | 2022年03月22日 13:57 |
    收件人 | wang_jin_1999@163.comwang_jin_1999@163.com |
    抄送至 | |
    主题 | [NVIDIA Developer Forums] [Jetson & Embedded Systems/Jetson Xavier NX] ERORR with ONNX2TRT : Unknown embedded device detected |

| AastaLLL Moderator
March 22 |

  • | - |

Hi,

We test your model with XavierNX+JetPack4.6.1.
It can run normally with the trtexec tool.

Do you meet the error with this model?

$ /usr/src/tensorrt/bin/trtexec --onnx=ace-8-best.onnx
&&&& RUNNING TensorRT.trtexec [TensorRT v8201] # /usr/src/tensorrt/bin/trtexec --onnx=ace-8-best.onnx
[03/22/2022-13:23:54] [I] === Model Options ===
[03/22/2022-13:23:54] [I] Format: ONNX
[03/22/2022-13:23:54] [I] Model: ace-8-best.onnx
[03/22/2022-13:23:54] [I] Output:
[03/22/2022-13:23:54] [I] === Build Options ===
[03/22/2022-13:23:54] [I] Max batch: explicit batch
[03/22/2022-13:23:54] [I] Workspace: 16 MiB
[03/22/2022-13:23:54] [I] minTiming: 1
[03/22/2022-13:23:54] [I] avgTiming: 8
[03/22/2022-13:23:54] [I] Precision: FP32
[03/22/2022-13:23:54] [I] Calibration:
[03/22/2022-13:23:54] [I] Refit: Disabled
[03/22/2022-13:23:54] [I] Sparsity: Disabled
[03/22/2022-13:23:54] [I] Safe mode: Disabled
[03/22/2022-13:23:54] [I] DirectIO mode: Disabled
[03/22/2022-13:23:54] [I] Restricted mode: Disabled
[03/22/2022-13:23:54] [I] Save engine:
[03/22/2022-13:23:54] [I] Load engine:
[03/22/2022-13:23:54] [I] Profiling verbosity: 0
[03/22/2022-13:23:54] [I] Tactic sources: Using default tactic sources
[03/22/2022-13:23:54] [I] timingCacheMode: local
[03/22/2022-13:23:54] [I] timingCacheFile:
[03/22/2022-13:23:54] [I] Input(s)s format: fp32:CHW
[03/22/2022-13:23:54] [I] Output(s)s format: fp32:CHW
[03/22/2022-13:23:54] [I] Input build shapes: model
[03/22/2022-13:23:54] [I] Input calibration shapes: model
[03/22/2022-13:23:54] [I] === System Options ===
[03/22/2022-13:23:54] [I] Device: 0
[03/22/2022-13:23:54] [I] DLACore:
[03/22/2022-13:23:54] [I] Plugins:
[03/22/2022-13:23:54] [I] === Inference Options ===
[03/22/2022-13:23:54] [I] Batch: Explicit
[03/22/2022-13:23:54] [I] Input inference shapes: model
[03/22/2022-13:23:54] [I] Iterations: 10
[03/22/2022-13:23:54] [I] Duration: 3s (+ 200ms warm up)
[03/22/2022-13:23:54] [I] Sleep time: 0ms
[03/22/2022-13:23:54] [I] Idle time: 0ms
[03/22/2022-13:23:54] [I] Streams: 1
[03/22/2022-13:23:54] [I] ExposeDMA: Disabled
[03/22/2022-13:23:54] [I] Data transfers: Enabled
[03/22/2022-13:23:54] [I] Spin-wait: Disabled
[03/22/2022-13:23:54] [I] Multithreading: Disabled
[03/22/2022-13:23:54] [I] CUDA Graph: Disabled
[03/22/2022-13:23:54] [I] Separate profiling: Disabled
[03/22/2022-13:23:54] [I] Time Deserialize: Disabled
[03/22/2022-13:23:54] [I] Time Refit: Disabled
[03/22/2022-13:23:54] [I] Skip inference: Disabled
[03/22/2022-13:23:54] [I] Inputs:
[03/22/2022-13:23:54] [I] === Reporting Options ===
[03/22/2022-13:23:54] [I] Verbose: Disabled
[03/22/2022-13:23:54] [I] Averages: 10 inferences
[03/22/2022-13:23:54] [I] Percentile: 99
[03/22/2022-13:23:54] [I] Dump refittable layers:Disabled
[03/22/2022-13:23:54] [I] Dump output: Disabled
[03/22/2022-13:23:54] [I] Profile: Disabled
[03/22/2022-13:23:54] [I] Export timing to JSON file:
[03/22/2022-13:23:54] [I] Export output to JSON file:
[03/22/2022-13:23:54] [I] Export profile to JSON file:
[03/22/2022-13:23:54] [I]
[03/22/2022-13:23:54] [I] === Device Information ===
[03/22/2022-13:23:54] [I] Selected Device: Xavier
[03/22/2022-13:23:54] [I] Compute Capability: 7.2
[03/22/2022-13:23:54] [I] SMs: 6
[03/22/2022-13:23:54] [I] Compute Clock Rate: 1.109 GHz
[03/22/2022-13:23:54] [I] Device Global Memory: 7765 MiB
[03/22/2022-13:23:54] [I] Shared Memory per SM: 96 KiB
[03/22/2022-13:23:54] [I] Memory Bus Width: 256 bits (ECC disabled)
[03/22/2022-13:23:54] [I] Memory Clock Rate: 1.109 GHz
[03/22/2022-13:23:54] [I]
[03/22/2022-13:23:54] [I] TensorRT version: 8.2.1
[03/22/2022-13:23:57] [I] [TRT] [MemUsageChange] Init CUDA: CPU +362, GPU +0, now: CPU 381, GPU 7360 (MiB)
[03/22/2022-13:23:57] [I] [TRT] [MemUsageSnapshot] Begin constructing builder kernel library: CPU 381 MiB, GPU 7385 MiB
[03/22/2022-13:23:58] [I] [TRT] [MemUsageSnapshot] End constructing builder kernel library: CPU 486 MiB, GPU 7490 MiB
[03/22/2022-13:23:58] [I] Start parsing network model
[03/22/2022-13:23:58] [I] [TRT] ----------------------------------------------------------------
[03/22/2022-13:23:58] [I] [TRT] Input filename:   ace-8-best.onnx
[03/22/2022-13:23:58] [I] [TRT] ONNX IR version:  0.0.6
[03/22/2022-13:23:58] [I] [TRT] Opset version:    12
[03/22/2022-13:23:58] [I] [TRT] Producer name:    pytorch
[03/22/2022-13:23:58] [I] [TRT] Producer version: 1.7
[03/22/2022-13:23:58] [I] [TRT] Domain:
[03/22/2022-13:23:58] [I] [TRT] Model version:    0
[03/22/2022-13:23:58] [I] [TRT] Doc string:
[03/22/2022-13:23:58] [I] [TRT] ----------------------------------------------------------------
[03/22/2022-13:23:58] [W] [TRT] onnx2trt_utils.cpp:366: Your ONNX model has been generated with INT64 weights, while TensorRT does not natively support INT64. Attempting to cast down to INT32.
[03/22/2022-13:23:58] [W] [TRT] onnx2trt_utils.cpp:392: One or more weights outside the range of INT32 was clamped
[03/22/2022-13:23:58] [I] Finish parsing network model
[03/22/2022-13:23:58] [I] [TRT] ---------- Layers Running on DLA ----------
[03/22/2022-13:23:58] [I] [TRT] ---------- Layers Running on GPU ----------
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_4
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_9
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_14
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_19
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_24
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_29
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_34
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_39
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_41
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_42), Mul_43)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_44
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_45), Mul_46)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_47 || Conv_57
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_48), Mul_49)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_50
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_51), Mul_52)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_53
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_54), Mul_55), Add_56)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_58), Mul_59)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_61
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_62), Mul_63)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_64
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_65), Mul_66)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_67 || Conv_91
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_68), Mul_69)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_70
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_71), Mul_72)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_73
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_74), Mul_75), Add_76)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_77
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_78), Mul_79)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_80
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_81), Mul_82), Add_83)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_84
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_85), Mul_86)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_87
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(Sigmoid_88), Mul_89), Add_90)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_92), Mul_93)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_95
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_96), Mul_97)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_98
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_99), Mul_100)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_101
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_102), Mul_103)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] MaxPool_104
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] MaxPool_105
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] MaxPool_106
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 183 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 184 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 185 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 186 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_108
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_109), Mul_110)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_111 || Conv_120
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_112), Mul_113)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_114
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_115), Mul_116)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_117
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_118), Mul_119)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_121), Mul_122)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_124
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_125), Mul_126)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_127
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_128), Mul_129)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Resize_131
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 214 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_133 || Conv_142
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_134), Mul_135)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_136
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_137), Mul_138)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_139
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_140), Mul_141)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_143), Mul_144)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_146
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_147), Mul_148)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_149
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_150), Mul_151)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 209 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_153 || Conv_162
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_154), Mul_155)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_156
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_157), Mul_158)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_159
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_160), Mul_161)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_163), Mul_164)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_166
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(Sigmoid_167), Mul_168)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_169
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_183 + Transpose_184
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(Sigmoid_185)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_190
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 282
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(280 + (Unnamed Layer* 145) [Shuffle], PWN(278 + (Unnamed Layer* 142) [Shuffle] + Mul_192, Sub_194)), Add_196), 284 + (Unnamed Layer* 150) [Shuffle] + Mul_198)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_203
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 295
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(278_2 + (Unnamed Layer* 157) [Shuffle], PWN(278_1 + (Unnamed Layer* 154) [Shuffle] + Mul_205, Pow_207)), Mul_209)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_214
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 285 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 296 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 301 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_218
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Conv_219
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_233 + Transpose_234
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(Sigmoid_235)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_240
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 340
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(PWN(280_5 + (Unnamed Layer* 173) [Shuffle], PWN(278_4 + (Unnamed Layer* 170) [Shuffle] + Mul_242, Sub_244)), Add_246), 342 + (Unnamed Layer* 178) [Shuffle] + Mul_248)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_253
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 353
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] PWN(PWN(278_7 + (Unnamed Layer* 185) [Shuffle], PWN(278_6 + (Unnamed Layer* 182) [Shuffle] + Mul_255, Pow_257)), Mul_259)
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Slice_264
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 343 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 354 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 359 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] Reshape_268
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 309 copy
[03/22/2022-13:23:58] [I] [TRT] [GpuLayer] 367 copy
[03/22/2022-13:23:59] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +226, GPU -130, now: CPU 716, GPU 7370 (MiB)
[03/22/2022-13:24:01] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +308, GPU +49, now: CPU 1024, GPU 7418 (MiB)
[03/22/2022-13:24:01] [I] [TRT] Local timing cache in use. Profiling results in this builder pass will not be stored.
[03/22/2022-13:24:19] [I] [TRT] Some tactics do not have sufficient workspace memory to run. Increasing workspace size may increase performance, please check verbose output.
[03/22/2022-13:29:59] [I] [TRT] Detected 1 inputs and 5 output network tensors.
[03/22/2022-13:29:59] [I] [TRT] Total Host Persistent Memory: 86944
[03/22/2022-13:29:59] [I] [TRT] Total Device Persistent Memory: 5606400
[03/22/2022-13:29:59] [I] [TRT] Total Scratch Memory: 0
[03/22/2022-13:29:59] [I] [TRT] [MemUsageStats] Peak memory usage of TRT CPU/GPU memory allocators: CPU 0 MiB, GPU 153 MiB
[03/22/2022-13:29:59] [I] [TRT] [BlockAssignment] Algorithm ShiftNTopDown took 24.8095ms to assign 6 blocks to 92 nodes requiring 49545216 bytes.
[03/22/2022-13:29:59] [I] [TRT] Total Activation Memory: 49545216
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 1492, GPU 7642 (MiB)
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +1, GPU +0, now: CPU 1493, GPU 7642 (MiB)
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] TensorRT-managed allocation in building engine: CPU +0, GPU +8, now: CPU 0, GPU 8 (MiB)
[03/22/2022-13:29:59] [I] [TRT] [MemUsageChange] Init CUDA: CPU +0, GPU +0, now: CPU 1486, GPU 7643 (MiB)
[03/22/2022-13:29:59] [I] [TRT] Loaded engine size: 6 MiB
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 1491, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +0, GPU +0, now: CPU 1491, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +5, now: CPU 0, GPU 5 (MiB)
[03/22/2022-13:30:00] [I] Engine built in 365.801 sec.
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 1383, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] Init cuDNN: CPU +0, GPU +0, now: CPU 1383, GPU 7643 (MiB)
[03/22/2022-13:30:00] [I] [TRT] [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +53, now: CPU 0, GPU 58 (MiB)
[03/22/2022-13:30:00] [I] Using random values for input images
[03/22/2022-13:30:00] [I] Created input binding for images with dimensions 1x3x576x1024
[03/22/2022-13:30:00] [I] Using random values for output 271
[03/22/2022-13:30:00] [I] Created output binding for 271 with dimensions 1x4x72x128x7
[03/22/2022-13:30:00] [I] Using random values for output 329
[03/22/2022-13:30:00] [I] Created output binding for 329 with dimensions 1x4x36x64x7
[03/22/2022-13:30:00] [I] Using random values for output output
[03/22/2022-13:30:00] [I] Created output binding for output with dimensions 1x46080x7
[03/22/2022-13:30:00] [I] Starting inference
[03/22/2022-13:30:03] [I] Warmup completed 10 queries over 200 ms
[03/22/2022-13:30:03] [I] Timing trace has 137 queries over 3.03627 s
[03/22/2022-13:30:03] [I]
[03/22/2022-13:30:03] [I] === Trace details ===
[03/22/2022-13:30:03] [I] Trace averages of 10 runs:
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.3331 ms - Host latency: 20.7671 ms (end to end 20.7771 ms, enqueue 1.60662 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.2344 ms - Host latency: 20.6647 ms (end to end 20.673 ms, enqueue 1.42271 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.278 ms - Host latency: 20.7075 ms (end to end 20.7159 ms, enqueue 1.41272 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 20.3264 ms - Host latency: 20.754 ms (end to end 20.7634 ms, enqueue 1.28146 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.4199 ms - Host latency: 21.8628 ms (end to end 21.8704 ms, enqueue 1.74171 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.236 ms - Host latency: 21.6648 ms (end to end 21.6722 ms, enqueue 1.35037 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.3434 ms - Host latency: 21.7727 ms (end to end 21.7803 ms, enqueue 1.38673 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 22.2484 ms - Host latency: 22.688 ms (end to end 22.6973 ms, enqueue 1.53107 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 24.2647 ms - Host latency: 24.7107 ms (end to end 24.7188 ms, enqueue 2.03612 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 24.3059 ms - Host latency: 24.763 ms (end to end 24.7763 ms, enqueue 2.10566 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 23.3107 ms - Host latency: 23.7685 ms (end to end 23.8416 ms, enqueue 1.88408 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.3281 ms - Host latency: 21.7574 ms (end to end 21.7663 ms, enqueue 1.44998 ms)
[03/22/2022-13:30:03] [I] Average on 10 runs - GPU latency: 21.6798 ms - Host latency: 22.11 ms (end to end 22.1181 ms, enqueue 1.44072 ms)
[03/22/2022-13:30:03] [I]
[03/22/2022-13:30:03] [I] === Performance summary ===
[03/22/2022-13:30:03] [I] Throughput: 45.1211 qps
[03/22/2022-13:30:03] [I] Latency: min = 20.5559 ms, max = 26.9751 ms, mean = 22.1483 ms, median = 21.713 ms, percentile(99%) = 26.3925 ms
[03/22/2022-13:30:03] [I] End-to-End Host Latency: min = 20.5636 ms, max = 27.1487 ms, mean = 22.1618 ms, median = 21.7196 ms, percentile(99%) = 26.3988 ms
[03/22/2022-13:30:03] [I] Enqueue Time: min = 1.18311 ms, max = 4.82983 ms, mean = 1.5932 ms, median = 1.46973 ms, percentile(99%) = 3.27307 ms
[03/22/2022-13:30:03] [I] H2D Latency: min = 0.295166 ms, max = 0.400879 ms, mean = 0.308775 ms, median = 0.303894 ms, percentile(99%) = 0.352295 ms
[03/22/2022-13:30:03] [I] GPU Compute Time: min = 20.1292 ms, max = 26.4944 ms, mean = 21.7113 ms, median = 21.2781 ms, percentile(99%) = 25.9492 ms
[03/22/2022-13:30:03] [I] D2H Latency: min = 0.116943 ms, max = 0.174683 ms, mean = 0.12821 ms, median = 0.126953 ms, percentile(99%) = 0.165649 ms
[03/22/2022-13:30:03] [I] Total Host Walltime: 3.03627 s
[03/22/2022-13:30:03] [I] Total GPU Compute Time: 2.97445 s
[03/22/2022-13:30:03] [I] Explanations of the performance metrics are printed in the verbose logs.
[03/22/2022-13:30:03] [I]
&&&& PASSED TensorRT.trtexec [TensorRT v8201] # /usr/src/tensorrt/bin/trtexec --onnx=ace-8-best.onnx

Thanks.

Hi,

Based on the below error, it looks like a resource issue:

[03/22/2022-15:22:48] [E] Error[2]: [utils.cpp::checkMemLimit::380] Error Code 2: Internal Error (Assertion upperBound != 0 failed. Unknown embedded device detected. Please update the table with the entry: {{1794, 6, 16}, 12653},)

Would you mind confirming which platform do you use?
Is it XavierNX? If yes, how much free memory do you have when running the model?

$ sudo tegrastats

Thanks.

1 Like

yes,I use XavierNX 16g emmc+B01 carrier board,not developkit.
here is tegrastats infromation during trtexec running(4s:start-Error occur-end):

fwav@ubuntu:~$ sudo tegrastats
RAM 2076/15817MB (lfb 2983x4MB) SWAP 0/7909MB (cached 0MB) CPU [3%@1907,0%@1907,0%@1907,0%@1907,off,off] EMC_FREQ 0%@1866 GR3D_FREQ 0%@510 APE 150 MTS fg 0% bg 0% AO@30C GPU@28.5C PMIC@50C AUX@29.5C CPU@32C thermal@29.95C VDD_IN 3668/3668 VDD_CPU_GPU_CV 370/370 VDD_SOC 1401/1401
RAM 2076/15817MB (lfb 2983x4MB) SWAP 0/7909MB (cached 0MB) CPU [1%@1907,0%@1907,0%@1907,0%@1907,off,off] EMC_FREQ 0%@1866 GR3D_FREQ 0%@510 APE 150 MTS fg 0% bg 0% AO@30C GPU@28.5C PMIC@50C AUX@29.5C CPU@32C thermal@29.75C VDD_IN 3585/3626 VDD_CPU_GPU_CV 288/329 VDD_SOC 1401/1401
RAM 2310/15817MB (lfb 2977x4MB) SWAP 0/7909MB (cached 0MB) CPU [12%@1907,43%@1907,6%@1907,25%@1907,off,off] EMC_FREQ 2%@1866 GR3D_FREQ 3%@510 APE 150 MTS fg 0% bg 15% AO@29.5C GPU@29C PMIC@50C AUX@29.5C CPU@32.5C thermal@30.25C VDD_IN 5020/4091 VDD_CPU_GPU_CV 1561/739 VDD_SOC 1479/1427
RAM 2508/15817MB (lfb 2971x4MB) SWAP 0/7909MB (cached 0MB) CPU [45%@1907,59%@1907,3%@1906,3%@1907,off,off] EMC_FREQ 2%@1866 GR3D_FREQ 22%@510 APE 150 MTS fg 0% bg 6% AO@29.5C GPU@29C PMIC@50C AUX@29.5C CPU@32.5C thermal@30.25C VDD_IN 5020/4323 VDD_CPU_GPU_CV 1561/945 VDD_SOC 1438/1429
RAM 2745/15817MB (lfb 2937x4MB) SWAP 0/7909MB (cached 0MB) CPU [56%@1907,33%@1907,16%@1907,4%@1907,off,off] EMC_FREQ 2%@1866 GR3D_FREQ 4%@510 APE 150 MTS fg 0% bg 17% AO@29.5C GPU@29C PMIC@50C AUX@29.5C CPU@32.5C thermal@30.25C VDD_IN 5177/4494 VDD_CPU_GPU_CV 1725/1101 VDD_SOC 1479/1439
RAM 3011/15817MB (lfb 2870x4MB) SWAP 0/7909MB (cached 0MB) CPU [73%@1907,37%@1907,9%@1906,2%@1907,off,off] EMC_FREQ 2%@1866 GR3D_FREQ 4%@510 APE 150 MTS fg 0% bg 3% AO@30C GPU@29C PMIC@50C AUX@29.5C CPU@32.5C thermal@30.25C VDD_IN 5020/4581 VDD_CPU_GPU_CV 1561/1177 VDD_SOC 1438/1439
RAM 2083/15817MB (lfb 2975x4MB) SWAP 0/7909MB (cached 0MB) CPU [18%@1907,62%@1907,20%@1907,18%@1907,off,off] EMC_FREQ 3%@1866 GR3D_FREQ 0%@510 APE 150 MTS fg 0% bg 14% AO@30C GPU@29C PMIC@50C AUX@29.5C CPU@32.5C thermal@30.25C VDD_IN 4732/4603 VDD_CPU_GPU_CV 1440/1215 VDD_SOC 1479/1445
RAM 2084/15817MB (lfb 2975x4MB) SWAP 0/7909MB (cached 0MB) CPU [3%@1907,1%@1907,1%@1907,0%@1907,off,off] EMC_FREQ 1%@1866 GR3D_FREQ 0%@510 APE 150 MTS fg 0% bg 1% AO@30C GPU@29C PMIC@50C AUX@29.5C CPU@32C thermal@30.25C VDD_IN 3791/4501 VDD_CPU_GPU_CV 494/1125 VDD_SOC 1401/1439

I change the carrier board with a third party.



I set nx to 20W 6core ,it has nothing help to slove the error

I connected nano4GB with Jetpack4.6.1 devolop kit system to the carrier board in picture and successfully converted the onnx to trt.

I used SDK Manager to reinstall the system twice.
Select the development boards P3668-0000 and 3668-0001module respectively.
After the system is installed, try onnx2trt directly after booting, the errors are reported twice.
What do I need to do to use tensorRT after brushing the machine? Or is there a hardware problem with my board?

dmesg:

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.253-tegra (buildbrain@mobile-u64-5403-d8000) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Sat Feb 19 08:58:27 PST 2022
[    0.000000] Boot CPU: AArch64 Processor [4e0f0040]
[    0.000000] OF: fdt:memory scan node memory, reg size 48,
[    0.000000] OF: fdt: - 80000000 ,  2c000000
[    0.000000] OF: fdt: - ac200000 ,  44800000
[    0.000000] OF: fdt: - 100000000 ,  380000000
[    0.000000] earlycon: tegra_comb_uart0 at MMIO32 0x000000000c168000 (options '')
[    0.000000] bootconsole [tegra_comb_uart0] enabled
[    0.000000] Found tegra_fbmem: 00800000@a06b2000
[    0.000000] Found lut_mem: 00002008@a06af000
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node grid-of-semaphores, compatible id nvidia,gosmem
[    0.000000] cma: Reserved 64 MiB at 0x00000000c2000000
[    0.000000] On node 0 totalpages: 4128253
[    0.000000]   DMA zone: 7160 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 458237 pages, LIFO batch:31
[    0.000000]   Normal zone: 57344 pages used for memmap
[    0.000000]   Normal zone: 3670016 pages, LIFO batch:31
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 24 pages/cpu s57624 r8192 d32488 u98304
[    0.000000] pcpu-alloc: s57624 r8192 d32488 u98304 alloc=24*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 4063749
[    0.000000] Kernel command line: console=ttyTCU0,115200 video=tegrafb earlycon=tegra_comb_uart,mmio32,0x0c168000 gpt rootfs.slot_suffix= tegra_fbmem=0x800000@0xa06b2000 lut_mem=0x2008@0xa06af000 usbcore.old_scheme_first=1 tegraid=19.1.2.0.0 maxcpus=6 boot.slot_suffix= boot.ratchetvalues=0.4.2 vpr_resize sdhci_tegra.en_boot_part_access=1    quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 nv-auto-config
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 163840 bytes
[    0.000000] log_buf_len min size: 32768 bytes
[    0.000000] log_buf_len: 262144 bytes
[    0.000000] early log buf free: 29952(91%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.000000] Memory: 15427660K/16513012K available (15358K kernel code, 2956K rwdata, 6696K rodata, 8640K init, 612K bss, 331688K reserved, 753664K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f80000   ( 15360 KB)
[    0.000000]     .rodata : 0xffffff8008f80000 - 0xffffff8009610000   (  6720 KB)
[    0.000000]       .init : 0xffffff8009610000 - 0xffffff8009e80000   (  8640 KB)
[    0.000000]       .data : 0xffffff8009e80000 - 0xffffff800a163008   (  2957 KB)
[    0.000000]        .bss : 0xffffff800a163008 - 0xffffff800a1fc0b4   (   613 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf10000000   (   256 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc400000000   ( 16384 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=6
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000005] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.000688] Console: colour dummy device 80x25
[    0.000700] console [tty0] enabled
[    0.000707] bootconsole [tegra_comb_uart0] disabled
[    0.000722] kmemleak: Kernel memory leak detector disabled
[    0.000741] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.000757] pid_max: default: 32768 minimum: 301
[    0.001858] Security Framework initialized
[    0.002442] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.002453] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.004236] ftrace: allocating 47098 entries in 184 pages
[    0.403497] sched-energy: Sched-energy-costs installed from DT
[    0.403518] ASID allocator initialised with 65536 entries
[    0.439302] tegra-id: chipid=21917.
[    0.439314] tegra-id: opt_subrevision=1.
[    0.439342] Tegra Revision: A02p SKU: 0xde CPU Process: 0 SoC Process: 0
[    0.439357] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t19x/jakku/kernel-dts/tegra194-p3668-all-p3509-0000.dts
[    0.439368] DTB Build time: Feb 19 2022 09:00:51
[    0.486802] CPU1: Booted secondary processor [4e0f0040]
[    0.518977] CPU2: Booted secondary processor [4e0f0040]
[    0.551047] CPU3: Booted secondary processor [4e0f0040]
[    0.583382] CPU4: Booted secondary processor [4e0f0040]
[    0.615425] CPU5: Booted secondary processor [4e0f0040]
[    0.615634] Brought up 6 CPUs
[    0.615677] SMP: Total of 6 processors activated.
[    0.615692] CPU features: detected feature: Privileged Access Never
[    0.615699] CPU features: detected feature: LSE atomic instructions
[    0.615705] CPU features: detected feature: User Access Override
[    0.615712] CPU features: detected feature: 32-bit EL0 Support
[    0.617039] CPU: All CPU(s) started at EL2
[    0.617102] alternatives: patching kernel code
[    0.624156] devtmpfs: initialized
[    0.667833] Initilizing CustomIPI irq domain
[    0.668080] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.668095] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.689946] pinctrl core: initialized pinctrl subsystem
[    0.690159] OS set in device tree is not L4T.
[    0.690385] regulator-dummy: no parameters
[    0.690616] Initializing plugin-manager
[    0.690666] Plugin module not found
[    0.690700] Plugin-manager status disabled
[    0.692104] NET: Registered protocol family 16
[    0.693412] pstore: using zlib compression
[    0.693432] console [pstore-1] enabled
[    0.693438] pstore: Registered ramoops as persistent store backend
[    0.693446] ramoops: attached 0x200000@0xf0800000, ecc: 0/0
[    0.709866] cpuidle: using governor menu
[    0.711213] bpmp: waiting for handshake
[    0.711221] bpmp: handshake completed
[    0.711237] bpmp: synchronizing channels
[    0.711245] bpmp: channels synchronized
[    0.711252] bpmp: mail init ok
[    0.714350] t19x-arm-smmu 12000000.iommu: found 3 SMMUs and ISO SMMU id is 2
[    0.714549] t19x-arm-smmu 12000000.iommu: probing hardware configuration...
[    0.714557] t19x-arm-smmu 12000000.iommu: SMMUv2 with:
[    0.714586] t19x-arm-smmu 12000000.iommu: 	stage 1 translation
[    0.714592] t19x-arm-smmu 12000000.iommu: 	stage 2 translation
[    0.714598] t19x-arm-smmu 12000000.iommu: 	nested translation
[    0.714608] t19x-arm-smmu 12000000.iommu: 	stream matching with 128 register groups, mask 0x7f80
[    0.714634] t19x-arm-smmu 12000000.iommu: SMMU address space size (0x800000) differs from mapped region size (0x1000000)!
[    0.714640] t19x-arm-smmu 12000000.iommu: 	64 context banks (0 stage-2 only)
[    0.714648] t19x-arm-smmu 12000000.iommu: 	Stage-1: 39-bit VA -> 48-bit IPA
[    0.714654] t19x-arm-smmu 12000000.iommu: 	Stage-2: 39-bit IPA -> 48-bit PA
[    0.718183] vdso: 2 pages (1 code @ ffffff8008f87000, 1 data @ ffffff8009e84000)
[    0.718207] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.720950] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.722995] tegra_aon_clk_init: ok
[    0.723004] Registering BPMP clocks...
[    0.723094] tegra_bpmp_clk_init: clock init ok (400 clks)
[    0.723806] Serial: AMBA PL011 UART driver
[    0.725036] tegra_powergate_init: DONE
[    0.725097] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t19x/jakku/kernel-dts/tegra194-p3668-all-p3509-0000.dts
[    0.725108] DTB Build time: Feb 19 2022 09:00:51
[    0.728855] Tegra reboot handler registered.
[    0.737199] iommu: Adding device 14160000.pcie to group 0
[    0.737906] iommu: Adding device 141a0000.pcie to group 1
[    0.739306] iommu: Adding device 2490000.ether_qos to group 2
[    0.739897] iommu: Adding device 3100000.serial to group 3
[    0.740401] iommu: Adding device 3110000.serial to group 4
[    0.740823] iommu: Adding device 3140000.serial to group 5
[    0.741497] tegra-pmc c360000.pmc: scratch reg offset dts data not present
[    0.741824] tegra-pmc: get_secure_pmc_setting: done secure_pmc=0
[    0.741854] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[    0.741868] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_L0
[    0.741876] tegra-pmc: ### PMC reset status reg: 0x0
[    0.741952] tegra-pmc: PMC Prod config success
[    0.742152] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.742165] tegra-pmc c360000.pmc: IO padctrl driver initialized
[    0.742511] iommu: Adding device 3460000.sdhci to group 6
[    0.743019] iommu: Adding device 3400000.sdhci to group 7
[    0.743502] iommu: Adding device 3210000.spi to group 8
[    0.743965] iommu: Adding device 3230000.spi to group 9
[    0.744385] iommu: Adding device 3270000.spi to group 10
[    0.745552] iommu: Adding device 3160000.i2c to group 11
[    0.745985] iommu: Adding device c240000.i2c to group 12
[    0.746386] iommu: Adding device 3180000.i2c to group 13
[    0.746802] iommu: Adding device 3190000.i2c to group 14
[    0.747357] iommu: Adding device 31b0000.i2c to group 15
[    0.747765] iommu: Adding device 31c0000.i2c to group 16
[    0.748183] iommu: Adding device c250000.i2c to group 17
[    0.748572] iommu: Adding device 31e0000.i2c to group 18
[    0.749138] iommu: Adding device sound to group 19
[    0.749664] iommu: Adding device 3510000.hda to group 20
[    0.750239] iommu: Adding device bc00000.rtcpu to group 21
[    0.752064] iommu: Adding device 13e10000.host1x to group 22
[    0.752495] iommu: Adding device 13e10000.host1x:ctx0 to group 23
[    0.752895] iommu: Adding device 13e10000.host1x:ctx1 to group 24
[    0.753274] iommu: Adding device 13e10000.host1x:ctx2 to group 25
[    0.753688] iommu: Adding device 13e10000.host1x:ctx3 to group 26
[    0.754074] iommu: Adding device 13e10000.host1x:ctx4 to group 27
[    0.754504] iommu: Adding device 13e10000.host1x:ctx5 to group 28
[    0.754881] iommu: Adding device 13e10000.host1x:ctx6 to group 29
[    0.755275] iommu: Adding device 13e10000.host1x:ctx7 to group 30
[    0.755775] iommu: Adding device 15340000.vic to group 31
[    0.756219] iommu: Adding device 15380000.nvjpg to group 32
[    0.756515] iommu: Adding device 15500000.tsec to group 33
[    0.756822] iommu: Adding device 15100000.tsecb to group 34
[    0.757165] iommu: Adding device 15480000.nvdec to group 35
[    0.757439] iommu: Adding device 15140000.nvdec1 to group 36
[    0.757732] iommu: Adding device 154c0000.nvenc to group 37
[    0.758036] iommu: Adding device 15a80000.nvenc1 to group 38
[    0.758483] iommu: Adding device 15880000.nvdla0 to group 39
[    0.759032] iommu: Adding device 158c0000.nvdla1 to group 40
[    0.759662] iommu: Adding device 15200000.nvdisplay to group 41
[    0.759912] platform 15200000.nvdisplay: IOVA linear map 0x00000000a06b2000(800000)
[    0.759923] platform 15200000.nvdisplay: IOVA linear map 0x00000000a06af000(3000)
[    0.763934] platform 15200000.nvdisplay: IOVA linear map 0x00000000c6000000(2a000000)
[    0.764011] t19x-arm-smmu: Adding 15200000.nvdisplay to ISO SMMU client
[    0.764519] iommu: Adding device 15210000.nvdisplay to group 42
[    0.764606] t19x-arm-smmu: Adding 15210000.nvdisplay to ISO SMMU client
[    0.766513] iommu: Adding device 15c10000.vi to group 43
[    0.766672] t19x-arm-smmu: Adding 15c10000.vi to ISO SMMU client
[    0.767115] iommu: Adding device 14800000.isp to group 44
[    0.768054] iommu: Adding device 16000000.pva0 to group 45
[    0.768554] iommu: Adding device 16800000.pva1 to group 46
[    0.768995] iommu: Adding device 15810000.se to group 47
[    0.769384] iommu: Adding device 15820000.se to group 48
[    0.769673] iommu: Adding device 15830000.se to group 49
[    0.770024] iommu: Adding device 15840000.se to group 50
[    0.770361] iommu: Adding device c1a0000.aon to group 51
[    0.772023] iommu: Adding device d000000.bpmp to group 52
[    0.772348] bpmp: ping status is 0
[    0.772460] bpmp d000000.bpmp: firmware tag is e73a758761f0c6d24a1e69a2ac6b5035
[    0.775593] bpmp d000000.bpmp: probe ok
[    0.777631] tegra-reset 0.bpmp_reset: registered 190 resets.
[    0.778117] iommu: Adding device smmu_test to group 53
[    0.779219] mc: mapped MMIO address: 0xffffff800a5e0000 -> 0x2c10000
[    0.779251] mc: mapped MMIO address: 0xffffff800a7b0000 -> 0x2c20000
[    0.779278] mc: mapped MMIO address: 0xffffff800a7d0000 -> 0x2c30000
[    0.779307] mc: mapped MMIO address: 0xffffff800b010000 -> 0x2c40000
[    0.779333] mc: mapped MMIO address: 0xffffff800b030000 -> 0x2c50000
[    0.779358] mc: mapped MMIO address: 0xffffff800b050000 -> 0x2b80000
[    0.779383] mc: mapped MMIO address: 0xffffff800b070000 -> 0x2b90000
[    0.779420] mc: mapped MMIO address: 0xffffff800b090000 -> 0x2ba0000
[    0.779438] mc: mapped MMIO address: 0xffffff800b0b0000 -> 0x2bb0000
[    0.779455] mc: mapped MMIO address: 0xffffff800b0d0000 -> 0x1700000
[    0.779472] mc: mapped MMIO address: 0xffffff800b0f0000 -> 0x1710000
[    0.779489] mc: mapped MMIO address: 0xffffff800b110000 -> 0x1720000
[    0.779507] mc: mapped MMIO address: 0xffffff800b130000 -> 0x1730000
[    0.779524] mc: mapped MMIO address: 0xffffff800b150000 -> 0x1740000
[    0.779542] mc: mapped MMIO address: 0xffffff800b170000 -> 0x1750000
[    0.779566] mc: mapped MMIO address: 0xffffff800b190000 -> 0x1760000
[    0.779595] mc: mapped MMIO address: 0xffffff800b1b0000 -> 0x1770000
[    0.779686] mc-err: mcerr ops are set to t19x
[    0.785914] iommu: Adding device 2600000.dma to group 54
[    0.791236] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 224 lines on the chip
[    0.792343] GPIO line 339 (wifi-enable) hogged as output/high
[    0.792387] GPIO line 412 (camera-control-output-low) hogged as output/low
[    0.792427] GPIO line 413 (camera-control-output-low) hogged as output/low
[    0.792825] gpiochip_setup_dev: registered GPIOs 288 to 511 on device: gpiochip0 (tegra-gpio)
[    0.801441] gpio gpiochip1: gpio-line-names specifies 21 line names but there are 40 lines on the chip
[    0.801509] GPIO line 253 (pex-refclk-sel-low) hogged as output/low
[    0.801550] GPIO line 266 (w-disable1) hogged as output/high
[    0.801590] GPIO line 264 (w-disable2) hogged as output/high
[    0.801626] GPIO line 265 (suspend-led-gpio) hogged as output/high
[    0.801911] gpiochip_setup_dev: registered GPIOs 248 to 287 on device: gpiochip1 (tegra-gpio-aon)
[    0.804547] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_83 = 0x10a
[    0.804559] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CTRL_0 = 3
[    0.804570] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_24(PMU_INT) = 256
[    0.805505] iommu: Adding device 3550000.xudc to group 55
[    0.806227] iommu: Adding device 3610000.xhci to group 56
[    0.809266] arm64_ras arm64_ras: probed
[    0.809747] ras_fhi_enable: FHI 470 enabled on CPU0
[    0.809799] ras_fhi_enable: FHI 471 enabled on CPU1
[    0.809892] ras_fhi_enable: FHI 472 enabled on CPU2
[    0.809977] ras_fhi_enable: FHI 473 enabled on CPU3
[    0.810127] ras_fhi_enable: FHI 474 enabled on CPU4
[    0.810212] ras_fhi_enable: FHI 475 enabled on CPU5
[    0.810402] carmel_ras_enable: RAS enabled on cpu0
[    0.810578] carmel_ras_enable: RAS enabled on cpu1
[    0.810788] carmel_ras_enable: RAS enabled on cpu2
[    0.811010] carmel_ras_enable: RAS enabled on cpu3
[    0.811221] carmel_ras_enable: RAS enabled on cpu4
[    0.811422] carmel_ras_enable: RAS enabled on cpu5
[    0.811540] carmel_ras carmel_ras: probed
[    0.813099] tegra-cbb 2300000.cbb-noc: noc_secure_irq = 479, noc_nonsecure_irq = 478>
[    0.813674] tegra-cbb c600000.aon-noc: noc_secure_irq = 481, noc_nonsecure_irq = 480>
[    0.814649] tegra-cbb d600000.bpmp-noc: noc_secure_irq = 483, noc_nonsecure_irq = 482>
[    0.815655] tegra-cbb be00000.rce-noc: noc_secure_irq = 485, noc_nonsecure_irq = 484>
[    0.816574] tegra-cbb b600000.sce-noc: noc_secure_irq = 487, noc_nonsecure_irq = 486>
[    0.816983] tegra-cbb 14040000.cv-noc: defer probe as CV-NOC not probed yet
[    0.818418] vdd-ac-bat: 5000 mV 
[    0.819093] vdd-sdmmc1-sw: 3300 mV 
[    0.819495] vdd-1v8-sd: 1800 mV 
[    0.819876] vdd-3v3-cvb: 3300 mV 
[    0.820199] vdd-1v8-cvb: 1800 mV 
[    0.820565] vdd-epb-1v0: 1000 mV 
[    0.820788] vdd-epb-1v0: supplied by vdd-3v3-cvb
[    0.821084] avdd-cam-2v8: 2800 mV 
[    0.821421] vdd-fan: 5000 mV 
[    0.821840] vdd-hdmi-5v0: 5000 mV 
[    0.822142] vdd_sys_en: 1200 mV 
[    0.860883] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.865345] eventlib_kernel: keventlib is initialized, test id: 0
[    0.865712] SCSI subsystem initialized
[    0.865964] libata version 3.00 loaded.
[    0.866309] usbcore: registered new interface driver usbfs
[    0.866364] usbcore: registered new interface driver hub
[    0.866412] usbcore: registered new device driver usb
[    0.877964] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    0.880628] max77620 4-003c: PMIC Version OTP:0x51 and ES:0x2
[    0.891100] vdd-1v0: at 1000 mV 
[    0.899123] vdd-1v8-hs: at 1800 mV 
[    0.906850] vdd-1v8-ls: at 1800 mV 
[    0.910849] vdd-1v8-ao: at 1800 mV 
[    0.918896] vddio-ddr-1v1: at 1100 mV 
[    0.926654] vdd-rtc: at 800 mV 
[    0.927828] spmic-ldo1: at 2375 mV 
[    0.938691] vdd-ao-3v3: at 3300 mV 
[    0.946718] vddio-emmc-3v3: at 3300 mV 
[    0.947912] spmic-ldo4: at 1587 mV 
[    0.958752] vdd-usb-3v3: at 3300 mV 
[    0.966781] vddio-sdmmc1-3v3: at 3300 mV 
[    0.970803] vdd-csi-1v2: at 1200 mV 
[    0.972198] spmic-ldo8: at 1800 mV 
[    0.977248] GPIO line 246 (gpio_default) hogged as output/high
[    0.978678] GPIO line 247 (gpio_default) hogged as output/high
[    0.978990] gpiochip_setup_dev: registered GPIOs 240 to 247 on device: gpiochip2 (max77620-gpio)
[    0.979289] max77620 4-003c: max77620 probe successful
[    0.979747] media: Linux media interface: v0.10
[    0.979803] Linux video capture interface: v2.00
[    0.981335] pps_core: LinuxPPS API ver. 1 registered
[    0.981343] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.981360] PTP clock support registered
[    0.981567] tegra_wdt_t18x 30c0000.watchdog: Expiry count is deprecated
[    0.981843] tegra_wdt_t18x 30c0000.watchdog: Tegra WDT init timeout = 120 sec
[    0.981877] tegra_wdt_t18x 30c0000.watchdog: Registered successfully
[    0.984396] trusty trusty: trusty version: Built: 08:57:16 Feb 19 2022 
[    0.984458] trusty trusty: selected api version: 3 (requested 3)
[    0.985371] Advanced Linux Sound Architecture Driver Initialized.
[    0.985940] Bluetooth: Core ver 2.22
[    0.986003] NET: Registered protocol family 31
[    0.986008] Bluetooth: HCI device and connection manager initialized
[    0.986018] Bluetooth: HCI socket layer initialized
[    0.986026] Bluetooth: L2CAP socket layer initialized
[    0.986052] Bluetooth: SCO socket layer initialized
[    0.988453] camchar: rtcpu character device driver loaded
[    0.988896] gpio tegra-gpio wake61 for gpio=201(Z:1)
[    0.988989] extcon-gpio-states external-connection:extcon@1: Cable state:0, cable id:0
[    0.990605] clocksource: Switched to clocksource arch_sys_counter
[    1.039240] VFS: Disk quotas dquot_6.6.0
[    1.039346] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.039767] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    1.041723] tegra-carveouts tegra-carveouts: assigned reserved memory node grid-of-semaphores
[    1.041780] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000c6000000, size=0x2a000000
[    1.042078] cma: enabled page replacement for spfn=c6000, epfn=f0000
[    1.042088] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    1.042115] nvmap: nvmap_select_cache_ops() nvmap cache ops set to scf
[    1.042124] nvmap_page_pool_init: Total RAM pages: 4045331
[    1.042132] nvmap_page_pool_init: nvmap page pool size: 505666 pages (1975 MB)
[    1.042454] nvmap_background_zero_thread: PP zeroing thread starting.
[    1.042813] misc nvmap: created heap vpr base 0x00000000c6000000 size (688128KiB)
[    1.043939] tegra-gpcdma 2600000.dma: GPC DMA driver register 31 channels
[    1.057109] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type CPU-therm
[    1.057358] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type GPU-therm
[    1.057605] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type AUX-therm
[    1.057778] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type AO-therm
[    1.057955] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    1.059167] la/ptsa driver initialized.
[    1.059507] NET: Registered protocol family 2
[    1.059623] IP idents hash table entries: 262144 (order: 9, 2097152 bytes)
[    1.066903] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.067615] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.068218] TCP: Hash tables configured (established 131072 bind 65536)
[    1.068266] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    1.068498] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    1.068998] NET: Registered protocol family 1
[    1.069711] RPC: Registered named UNIX socket transport module.
[    1.069718] RPC: Registered udp transport module.
[    1.069723] RPC: Registered tcp transport module.
[    1.069728] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.069741] PCI: CLS 0 bytes, default 64
[    1.069966] Trying to unpack rootfs image as initramfs...
[    1.292921] Freeing initrd memory: 7068K
[    1.309867] random: fast init done
[    1.314172] host1x 13e10000.host1x: initialized
[    1.316072] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.320565] audit: initializing netlink subsys (disabled)
[    1.320627] audit: type=2000 audit(0.936:1): initialized
[    1.321282] workingset: timestamp_bits=46 max_order=22 bucket_order=0
[    1.330029] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.335374] ntfs: driver 2.1.32 [Flags: R/W].
[    1.335995] 9p: Installing v9fs 9p2000 file system support
[    1.340939] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    1.345092] io scheduler noop registered
[    1.345333] io scheduler cfq registered (default)
[    1.349013] gic 2a41000.agic-controller: GIC IRQ controller registered
[    1.352728] iommu: Adding device 2993000.adsp to group 57
[    1.407004] iommu: Adding device aconnect@2a41000:adsp_audio to group 58
[    1.408162] tegra-aconnect aconnect@2a41000: Tegra ACONNECT bus registered
[    1.419958] tegra-pwm 3280000.pwm: PWM clk can sleep in ops
[    1.420428] tegra-pwm c340000.pwm: PWM clk can sleep in ops
[    1.421004] tegra-pwm 32c0000.pwm: PWM clk can sleep in ops
[    1.421445] tegra-pwm 32d0000.pwm: PWM clk can sleep in ops
[    1.421840] tegra-pwm 32f0000.pwm: PWM clk can sleep in ops
[    1.424840] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.425000] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=1500000, max_bw=1500000
[    1.427559] tsec 15500000.tsec: initialized
[    1.429168] tsec 15100000.tsecb: initialized
[    1.432669] nvdec 15480000.nvdec: initialized
[    1.435274] nvdec 15140000.nvdec1: initialized
[    1.440561] falcon 15340000.vic: initialized
[    1.442285] falcon 15380000.nvjpg: initialized
[    1.443888] falcon 154c0000.nvenc: initialized
[    1.445729] falcon 15a80000.nvenc1: initialized
[    1.448160] iommu_context_dev 13e10000.host1x:ctx0: initialized (streamid=56)
[    1.449594] iommu_context_dev 13e10000.host1x:ctx1: initialized (streamid=57)
[    1.451049] iommu_context_dev 13e10000.host1x:ctx2: initialized (streamid=58)
[    1.452476] iommu_context_dev 13e10000.host1x:ctx3: initialized (streamid=59)
[    1.453846] iommu_context_dev 13e10000.host1x:ctx4: initialized (streamid=60)
[    1.455336] iommu_context_dev 13e10000.host1x:ctx5: initialized (streamid=61)
[    1.456797] iommu_context_dev 13e10000.host1x:ctx6: initialized (streamid=62)
[    1.458199] iommu_context_dev 13e10000.host1x:ctx7: initialized (streamid=63)
[    1.461554] t194-nvcsi 15a00000.nvcsi: initialized
[    1.466710] scare-pigeon 13e10000.host1x:vi-thi@15f00000: initialized
[    1.467027] scare-pigeon 14b00000.isp-thi: initialized
[    1.472475] pva 16000000.pva0: initialized
[    1.477766] pva 16800000.pva1: initialized
[    1.482592] nvdla 15880000.nvdla0: initialized
[    1.487188] nvdla 158c0000.nvdla1: initialized
[    1.488250] tegradccommon 15200000.dc_common: host1x channel mapped
[    1.488263] tegradccommon 15200000.dc_common: dc_common syncpt # 1 allocated
[    1.488291] tegradccommon 15200000.dc_common: dma mapping done
[    1.489252] tegradc 15200000.nvdisplay: disp0 connected to head0->/host1x/sor1
[    1.489281] generic_infoframe_type: 0x87
[    1.489342] tegradc 15200000.nvdisplay: DT parsed successfully
[    1.489399] tegradc 15200000.nvdisplay: Display dc.ffffff800bd50000 registered with id=0
[    1.492762] tegra_nvdisp_bandwidth_register_max_config: max config iso bw = 15681600 KB/s
[    1.492770] tegra_nvdisp_bandwidth_register_max_config: max config EMC floor = 933000000 Hz
[    1.492775] tegra_nvdisp_bandwidth_register_max_config: max config hubclk = 300000000 Hz
[    1.492951] tegradc 15200000.nvdisplay: vblank syncpt # 8 for dc 0
[    1.492960] tegradc 15200000.nvdisplay: vpulse3 syncpt # 9 for dc 0
[    1.493638] tegradc 15200000.nvdisplay: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350937
[    1.495582] tegradc 15200000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[    1.495590] tegradc 15200000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[    1.498627] tegradc 15200000.nvdisplay: probed
[    1.533520] Console: switching to colour frame buffer device 240x67
[    1.533652] tegradc 15200000.nvdisplay: fb registered
[    1.533916] gpio tegra-gpio wake63 for gpio=97(M:1)
[    1.534349] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[    1.534442] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[    1.536470] Parent Clock set for DC plld2
[    1.603203] tegradc 15200000.nvdisplay: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_111m_223m
[    1.603822] tegradc 15200000.nvdisplay: hdmi: get RGB quant from REG programmed by BL.
[    1.603835] tegradc 15200000.nvdisplay: hdmi: get YCC quant from REG programmed by BL.
[    1.629377] extcon-disp-state external-connection:disp-state: cable 47 state 1
[    1.629383] Extcon AUX1(HDMI) enable
[    1.629850] tegradc 15210000.nvdisplay: disp1 connected to head1->/host1x/sor
[    1.629882] tegradc 15210000.nvdisplay: parse_dp_settings: No dp-lt-settings node
[    1.629958] tegradc 15210000.nvdisplay: DT parsed successfully
[    1.630017] tegradc 15210000.nvdisplay: Display dc.ffffff800be50000 registered with id=1
[    1.630245] tegradc 15210000.nvdisplay: vblank syncpt # 11 for dc 1
[    1.630254] tegradc 15210000.nvdisplay: vpulse3 syncpt # 12 for dc 1
[    1.638435] tegradc 15210000.nvdisplay: probed
[    1.638877] tegradc 15210000.nvdisplay: fb registered
[    1.642164] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.642173] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    1.642184] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.642198] tegradc 15210000.nvdisplay: blank - powerdown
[    1.642212] extcon-disp-state external-connection:disp-state: cable 44 state 0 already set.
[    1.642216] Extcon DP: HPD disabled
[    1.642220] hpd: hpd_switch 0
[    1.642226] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.642236] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.642244] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.642563] tegra_cec 3960000.tegra_cec: dt=1 start=0x03960000 end=0x03960FFF irq=78
[    1.642571] tegra_cec 3960000.tegra_cec: Unpowergate DISP: 0.
[    1.642854] tegra_cec 3960000.tegra_cec: Enable clock result: 0.
[    1.643092] tegra_cec 3960000.tegra_cec: cec_add_sysfs ret=0
[    1.643100] tegra_cec 3960000.tegra_cec: probed
[    1.643980] tegra_cec 3960000.tegra_cec: tegra_cec_init started
[    1.651798] tegra-adma 2930000.adma: Tegra210 ADMA driver registered 32 channels
[    1.652550] tegra-fuse-burn 3820000.efuse:efuse-burn: shutdown limit check disabled
[    1.652559] tegra-fuse-burn 3820000.efuse:efuse-burn: Fuse burn driver initialized
[    1.652934] kfuse 3830000.kfuse: initialized
[    1.658079] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.660503] 3100000.serial: ttyTHS0 at MMIO 0x3100000 (irq = 47, base_baud = 0) is a TEGRA_UART
[    1.661583] 3110000.serial: ttyTHS1 at MMIO 0x3110000 (irq = 48, base_baud = 0) is a TEGRA_UART
[    1.662257] 3140000.serial: ttyTHS4 at MMIO 0x3140000 (irq = 49, base_baud = 0) is a TEGRA_UART
[    1.663191] console [ttyTCU0] enabled
[    1.663435] [drm] Initialized
[    1.673216] brd: module loaded
[    1.677569] loop: module loaded
[    1.677624] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.677733] tegra_profiler: auth: init
[    1.678172] THERMAL EST: found 3 subdevs
[    1.678178] THERMAL EST num_resources: 0
[    1.678190] [THERMAL EST subdev 0]
[    1.678197] [THERMAL EST subdev 1]
[    1.678202] [THERMAL EST subdev 2]
[    1.678213] THERMAL EST: Found 2 profiles, default profile is quiet
[    1.678768] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    1.678773] THERMAL EST: thz register success.
[    1.678963] THERMAL EST: end of probe, return err: 0
[    1.679479] sd: No Scsi addr parsed to reserve index
[    1.679515] hisi_sas: driver version v1.6
[    1.688587] qspi_mtd spi6.0: s25fs256s SSG 8 0 1000 2000000
[    1.688595] qspi_mtd spi6.0: s25fs256s (32768 Kbytes)
[    1.688604] qspi_mtd spi6.0: mtd .name = spi6.0, .size = 0x2000000 (32MiB) .erasesize = 0x00010000 (64KiB) .numeraseregions = 0
[    1.688860] 1 ofpart partitions found on MTD device spi6.0
[    1.688866] Creating 1 MTD partitions on "spi6.0":
[    1.688885] 0x000000000000-0x000002000000 : "Whole_flash0"
[    1.690848] libphy: Fixed MDIO Bus: probed
[    1.691382] tun: Universal TUN/TAP device driver, 1.6
[    1.691388] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.692032] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.692037] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.692067] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.692071] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.692103] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.692107] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.692140] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    1.692144] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.761722] tegradc 15200000.nvdisplay: blank - powerdown
[    1.803612] extcon-disp-state external-connection:disp-state: cable 47 state 0
[    1.803616] Extcon AUX1(HDMI) disable
[    1.829230] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[    1.830364] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[    1.843583] tegradc 15200000.nvdisplay: unblank
[    1.845243] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[    1.845502] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[    1.852746] Parent Clock set for DC plld2
[    1.857555] tegradc 15200000.nvdisplay: hdmi: tmds rate:50250K prod-setting:prod_c_hdmi_0m_54m
[    1.858994] tegradc 15200000.nvdisplay: hdmi: get YCC quant from EDID.
[    1.893707] extcon-disp-state external-connection:disp-state: cable 47 state 1
[    1.893711] Extcon AUX1(HDMI) enable
[    1.909325] tegradc 15200000.nvdisplay: sync windows ret = 246
[    1.928991] extcon-disp-state external-connection:disp-state: cable 51 state 1
[    1.928997] Extcon HDMI: HPD enabled
[    1.929030] tegradc 15200000.nvdisplay: hdmi: plugged
[    1.937670] eqos 2490000.ether_qos: failed to read eqos_auto_cal_config_0_reg
[    1.938241] eqos 2490000.ether_qos: Setting local MAC: 48 b0 2d 5f 96 fe
[    1.938261] Using phyrst_lpmode = 1 from DT
[    1.938359] libphy: dwc_phy: probed
[    1.940544] PPP generic driver version 2.4.2
[    1.940972] PPP BSD Compression module registered
[    1.940980] PPP Deflate Compression module registered
[    1.941000] PPP MPPE Compression module registered
[    1.941006] NET: Registered protocol family 24
[    1.941067] usbcore: registered new interface driver r8152
[    1.941096] usbcore: registered new interface driver asix
[    1.941131] usbcore: registered new interface driver ax88179_178a
[    1.941156] usbcore: registered new interface driver cdc_ether
[    1.941181] usbcore: registered new interface driver net1080
[    1.941208] usbcore: registered new interface driver cdc_subset
[    1.941265] usbcore: registered new interface driver zaurus
[    1.941302] usbcore: registered new interface driver cdc_ncm
[    1.941844] VFIO - User Level meta-driver version: 0.3
[    1.942900] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.942924] ehci-pci: EHCI PCI platform driver
[    1.942953] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.942962] ohci-pci: OHCI PCI platform driver
[    1.942988] ohci-platform: OHCI generic platform driver
[    1.947849] tegra-xusb 3610000.xhci: USB2 port 0 has OTG_CAP
[    1.949841] tegra-xusb 3610000.xhci: extcon 0: ffffffc3ec264000 id
[    1.950566] usbcore: registered new interface driver uas
[    1.950649] usbcore: registered new interface driver usb-storage
[    1.950711] usbcore: registered new interface driver usbserial
[    1.952512] tegra-xusb 3610000.xhci: Firmware timestamp: 2020-09-11 16:55:03 UTC, Version: 60.09 release
[    1.952548] tegra-xusb 3610000.xhci: xHCI Host Controller
[    1.952570] tegra-xusb 3610000.xhci: new USB bus registered, assigned bus number 1
[    1.953251] tegra-xusb 3610000.xhci: hcc params 0x0184ff25 hci version 0x110 quirks 0x00050810
[    1.953290] tegra-xusb 3610000.xhci: irq 465, io mem 0x03610000
[    1.953491] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.953497] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.953503] usb usb1: Product: xHCI Host Controller
[    1.953509] usb usb1: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    1.953514] usb usb1: SerialNumber: 3610000.xhci
[    1.954014] hub 1-0:1.0: USB hub found
[    1.954110] hub 1-0:1.0: 4 ports detected
[    1.954614] tegra-xusb 3610000.xhci: xHCI Host Controller
[    1.954626] tegra-xusb 3610000.xhci: new USB bus registered, assigned bus number 2
[    1.954635] tegra-xusb 3610000.xhci: Host supports USB 3.1 Enhanced SuperSpeed
[    1.954867] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.954874] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.954880] usb usb2: Product: xHCI Host Controller
[    1.954885] usb usb2: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    1.954891] usb usb2: SerialNumber: 3610000.xhci
[    1.955267] hub 2-0:1.0: USB hub found
[    1.955304] hub 2-0:1.0: 4 ports detected
[    1.956299] tegra-xudc-new 3550000.xudc: PMQOS CPU boost enabled
[    1.956375] tegra-xudc-new 3550000.xudc: device count: 1
[    1.956402] Wake76 for irq=199
[    1.956406] Wake77 for irq=199
[    1.956410] Wake78 for irq=199
[    1.956414] Wake79 for irq=199
[    1.956418] Wake80 for irq=199
[    1.956422] Wake81 for irq=199
[    1.956426] Wake82 for irq=199
[    1.956464] tegra-xusb 3610000.xhci: Upgrade port 0 to USB3.0
[    1.956471] tegra-xusb 3610000.xhci: Upgrade port 1 to USB3.0
[    1.957323] tegra-xudc-new 3550000.xudc: vbus state: 0
[    1.957335] tegra-xudc-new 3550000.xudc: Initialize boost_cpufreq work
[    1.957360] tegra-xudc-new 3550000.xudc: entering ELPG
[    1.957627] tegra-xudc-new 3550000.xudc: entering ELPG done
[    1.958113] mousedev: PS/2 mouse device common for all mice
[    1.958219] usbcore: registered new interface driver xpad
[    2.058830] usb usb2: usb_suspend_both: status 0
[    2.088267] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    2.089679] Wake73 for irq=42
[    2.091006] rtc rtc1: alarm rtc device
[    2.091024] tegra_rtc c2a0000.rtc: rtc core: registered c2a0000.rtc as rtc1
[    2.091051] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    2.091215] i2c /dev entries driver
[    2.093341] i2c i2c-2: Added multiplexed i2c bus 9
[    2.093777] i2c i2c-2: Added multiplexed i2c bus 10
[    2.093785] i2c-mux-gpio cam_i2cmux: 2 port mux on 3180000.i2c adapter
[    2.094330] imx219 9-0010: tegracam sensor driver:imx219_v2.0.6
[    2.278590] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[    2.300161] usb 1-2: New USB device found, idVendor=090c, idProduct=1000
[    2.300170] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.300176] usb 1-2: Product: USB Flash Disk
[    2.300182] usb 1-2: Manufacturer: General
[    2.300187] usb 1-2: SerialNumber: 0404150000012681
[    2.301086] usb-storage 1-2:1.0: USB Mass Storage device detected
[    2.301383] usb-storage 1-2:1.0: Quirks match for vid 090c pid 1000: 400
[    2.301464] scsi host0: usb-storage 1-2:1.0
[    2.418592] usb 1-3: new high-speed USB device number 3 using tegra-xusb
[    2.441313] usb 1-3: New USB device found, idVendor=2109, idProduct=2813
[    2.441322] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.441328] usb 1-3: Product: USB2.0 Hub             
[    2.441333] usb 1-3: Manufacturer: VIA Labs, Inc.         
[    2.442395] hub 1-3:1.0: USB hub found
[    2.443216] hub 1-3:1.0: 4 ports detected
[    2.650582] tegra_cec 3960000.tegra_cec: physical address: 10:00.
[    2.715121] tegra_cec 3960000.tegra_cec: Sent <Text View On> res: -113.
[    2.715128] tegra_cec 3960000.tegra_cec: tegra_cec_init Done.
[    2.794579] usb 1-3.2: new low-speed USB device number 4 using tegra-xusb
[    2.821329] usb 1-3.2: New USB device found, idVendor=413c, idProduct=2113
[    2.821338] usb 1-3.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.821344] usb 1-3.2: Product: Dell KB216 Wired Keyboard
[    2.954598] usb 1-3.3: new low-speed USB device number 5 using tegra-xusb
[    2.979068] usb 1-3.3: New USB device found, idVendor=413c, idProduct=301a
[    2.979076] usb 1-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.979084] usb 1-3.3: Product: Dell MS116 USB Optical Mouse
[    2.979090] usb 1-3.3: Manufacturer: PixArt
[    3.418569] usb 1-3.1: new high-speed USB device number 6 using tegra-xusb
[    3.497269] scsi 0:0:0:0: Direct-Access     General  USB Flash Disk   1100 PQ: 0 ANSI: 4
[    3.498066] sd 0:0:0:0: [sda] 31506432 512-byte logical blocks: (16.1 GB/15.0 GiB)
[    3.498621] sd 0:0:0:0: [sda] Write Protect is off
[    3.498631] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
[    3.499142] sd 0:0:0:0: [sda] No Caching mode page found
[    3.499328] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    3.505436]  sda: sda1
[    3.507368] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    3.678204] usb 1-3.1: New USB device found, idVendor=0b95, idProduct=1790
[    3.678213] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.678219] usb 1-3.1: Product: AX88179A
[    3.678224] usb 1-3.1: Manufacturer: ASIX
[    3.678230] usb 1-3.1: SerialNumber: 0068A97F
[    3.719307] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    3.729625] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    3.941314] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.054587] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to read reg index 0x0006: -32
[    4.064925] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0005: -32
[    4.075302] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.087004] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.097382] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.107887] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.118278] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    4.128913] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.140818] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    4.151191] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to read reg index 0x0001: -32
[    4.161515] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.172053] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x001f: -32
[    4.182397] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x0019: -32
[    4.194301] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x001f: -32
[    4.204804] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.215179] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000e: -32
[    4.225517] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.236053] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to read reg index 0x000e: -32
[    4.247922] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.258299] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000e: -32
[    4.268802] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.279163] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to write reg index 0x000e: -32
[    4.289512] ax88179_178a 1-3.1:2.0 (unnamed net_device) (uninitialized): Failed to read reg index 0x0000: -32
[    4.289950] ax88179_178a 1-3.1:2.0 eth1: register 'ax88179_178a' at usb-3610000.xhci-3.1, ASIX AX88179 USB 3.0 Gigabit Ethernet, 26:25:40:48:58:b6
[    4.371507] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    4.382023] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    4.592936] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.705482] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to read reg index 0x0006: -32
[    4.715971] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0005: -32
[    4.726343] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.736667] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.748643] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.758986] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.769326] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    4.779858] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.790200] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0002: -32
[    4.802008] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to read reg index 0x0001: -32
[    4.812353] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0001: -32
[    4.822878] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x001f: -32
[    4.833213] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x0019: -32
[    4.843898] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x001f: -32
[    4.855681] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.866201] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000e: -32
[    4.876551] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.886929] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to read reg index 0x000e: -32
[    4.897239] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.909078] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000e: -32
[    4.919402] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000d: -32
[    4.929777] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to write reg index 0x000e: -32
[    4.940108] ax88179_178a 1-3.1:2.1 (unnamed net_device) (uninitialized): Failed to read reg index 0x0000: -32
[    4.940741] ax88179_178a 1-3.1:2.1 eth2: register 'ax88179_178a' at usb-3610000.xhci-3.1, ASIX AX88179 USB 3.0 Gigabit Ethernet, 26:25:40:48:58:b6
[    5.999503] usb 1-3.1: USB disconnect, device number 6
[    5.999663] ax88179_178a 1-3.1:2.0 eth1: unregister 'ax88179_178a' usb-3610000.xhci-3.1, ASIX AX88179 USB 3.0 Gigabit Ethernet
[    6.026648] ax88179_178a 1-3.1:2.0 eth1 (unregistered): Failed to write reg index 0x0002: -19
[    6.026660] ax88179_178a 1-3.1:2.0 eth1 (unregistered): Failed to write reg index 0x0001: -19
[    6.026669] ax88179_178a 1-3.1:2.0 eth1 (unregistered): Failed to write reg index 0x0002: -19
[    6.026893] ax88179_178a 1-3.1:2.1 eth2: unregister 'ax88179_178a' usb-3610000.xhci-3.1, ASIX AX88179 USB 3.0 Gigabit Ethernet
[    6.046594] ax88179_178a 1-3.1:2.1 eth2 (unregistered): Failed to write reg index 0x0002: -19
[    6.046609] ax88179_178a 1-3.1:2.1 eth2 (unregistered): Failed to write reg index 0x0001: -19
[    6.046620] ax88179_178a 1-3.1:2.1 eth2 (unregistered): Failed to write reg index 0x0002: -19
[    7.002570] usb 1-3.1: new high-speed USB device number 7 using tegra-xusb
[    7.165255] usb 1-3.1: New USB device found, idVendor=0b95, idProduct=1790
[    7.165264] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.165270] usb 1-3.1: Product: AX88179A
[    7.165275] usb 1-3.1: Manufacturer: ASIX
[    7.165281] usb 1-3.1: SerialNumber: 0068A97F
[    7.784544] ax88179_178a 1-3.1:1.0 (unnamed net_device) (uninitialized): Failed to read reg index 0x0040: -32
[    8.095759] ax88179_178a 1-3.1:1.0 eth1: register 'ax88179_178a' at usb-3610000.xhci-3.1, ASIX AX88179 USB 3.0 Gigabit Ethernet, f8:e4:3b:68:a9:7f
[   12.122624] tegra-i2c 3180000.i2c: pio timed out addr: 0x10 tlen:28 rlen:4
[   12.122866] tegra-i2c 3180000.i2c: --- register dump for debugging ----
[   12.123051] tegra-i2c 3180000.i2c: I2C_CNFG - 0x22c00
[   12.123234] tegra-i2c 3180000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   12.123413] tegra-i2c 3180000.i2c: I2C_FIFO_CONTROL - 0x0
[   12.123578] tegra-i2c 3180000.i2c: I2C_FIFO_STATUS - 0x800080
[   12.123733] tegra-i2c 3180000.i2c: I2C_MST_FIFO_CONTROL - 0x70000
[   12.123926] tegra-i2c 3180000.i2c: I2C_MST_FIFO_STATUS - 0x7c0000
[   12.124098] tegra-i2c 3180000.i2c: I2C_MST_PACKET_TRANSFER_CNT - 0x0
[   12.124299] tegra-i2c 3180000.i2c: I2C_INT_MASK - 0x7d
[   12.124438] tegra-i2c 3180000.i2c: I2C_INT_STATUS - 0x2
[   12.124602] tegra-i2c 3180000.i2c: i2c transfer timed out addr: 0x10
[   12.124819] imx219 9-0010: imx219_board_setup: error during i2c read probe (-110)
[   12.125138] imx219 9-0010: board setup failed
[   12.125374] imx219: probe of 9-0010 failed with error -110
[   12.125847] imx219 10-0010: tegracam sensor driver:imx219_v2.0.6
[   22.362657] tegra-i2c 3180000.i2c: pio timed out addr: 0x10 tlen:28 rlen:4
[   22.362911] tegra-i2c 3180000.i2c: --- register dump for debugging ----
[   22.363094] tegra-i2c 3180000.i2c: I2C_CNFG - 0x22c00
[   22.363261] tegra-i2c 3180000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   22.363457] tegra-i2c 3180000.i2c: I2C_FIFO_CONTROL - 0x0
[   22.363608] tegra-i2c 3180000.i2c: I2C_FIFO_STATUS - 0x800080
[   22.363785] tegra-i2c 3180000.i2c: I2C_MST_FIFO_CONTROL - 0x70000
[   22.363973] tegra-i2c 3180000.i2c: I2C_MST_FIFO_STATUS - 0x7c0000
[   22.364139] tegra-i2c 3180000.i2c: I2C_MST_PACKET_TRANSFER_CNT - 0x0
[   22.364332] tegra-i2c 3180000.i2c: I2C_INT_MASK - 0x7d
[   22.364478] tegra-i2c 3180000.i2c: I2C_INT_STATUS - 0x2
[   22.364638] tegra-i2c 3180000.i2c: i2c transfer timed out addr: 0x10
[   22.364874] imx219 10-0010: imx219_board_setup: error during i2c read probe (-110)
[   22.365198] imx219 10-0010: board setup failed
[   22.365431] imx219: probe of 10-0010 failed with error -110
[   22.366764] max77620-power max20024-power: Event recorder REG_NVERC : 0x44
[   22.373144] tegra-thermal-throttle bthrot_cdev: cpufreq policy is not ready defer
[   22.373450] FAN dev name: pwm-fan
[   22.373497] FAN:gpio request success.
[   22.373509] FAN: can't find tach_gpio
[   22.373522] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[   22.373574] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[   22.373789] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[   22.373796] pwm_fan_driver pwm-fan: tach period: 1000
[   22.374295] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[   22.374312] pwm_fan_driver pwm-fan: index 1: pwm=130, rpm=1000, rru=2, rrd=2, state:2
[   22.374318] pwm_fan_driver pwm-fan: index 2: pwm=160, rpm=2000, rru=1, rrd=1, state:2
[   22.374325] pwm_fan_driver pwm-fan: index 3: pwm=200, rpm=3000, rru=1, rrd=1, state:2
[   22.374330] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[   22.374336] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[   22.374342] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[   22.374348] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[   22.374355] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[   22.374361] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[   22.375167] tegra-oc-event d280000.soctherm-oc-event: OC driver initialized
[   22.375984] device-mapper: uevent: version 1.0.3
[   22.376334] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[   22.379688] tegra194_cpufreq_probe: platform driver Initialization: pass
[   22.380608] cpuidle: Initializing cpuidle driver
[   22.381403] sdhci: Secure Digital Host Controller Interface driver
[   22.381407] sdhci: Copyright(c) Pierre Ossman
[   22.381411] sdhci-pltfm: SDHCI platform and OF driver helper
[   22.382818] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[   22.384604] CMDQ: cmdq_platfm_init successful
[   22.385204] sdhci-tegra 3400000.sdhci: Got CD GPIO
[   22.386903] sdhci-tegra 3400000.sdhci: Client registration for eMC Successful
[   22.388432] sdhci-tegra 3400000.sdhci: wakeup init done, cdirq 247
[   22.392794] tegra-se-nvhost 15810000.se: initialized
[   22.393924] tegra-se-nvhost 15810000.se: tegra_se_probe: complete
[   22.394505] tegra-se-nvhost 15820000.se: initialized
[   22.395445] tegra-se-nvhost 15820000.se: tegra_se_probe: complete
[   22.396064] tegra-se-nvhost 15830000.se: initialized
[   22.396649] tegra-se-nvhost 15830000.se: tegra_se_probe: complete
[   22.397197] tegra-se-nvhost 15840000.se: initialized
[   22.398028] tegra-se-nvhost 15840000.se: tegra_se_probe: complete
[   22.399200] tegra-se-elp 3ad0000.se_elp: tegra_se_elp_probe: complete
[   22.399307] hidraw: raw HID events driver (C) Jiri Kosina
[   22.403513] input: Dell KB216 Wired Keyboard as /devices/3610000.xhci/usb1/1-3/1-3.2/1-3.2:1.0/0003:413C:2113.0001/input/input0
[   22.430575] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[   22.442669] gpio tegra-gpio wake8 for gpio=55(G:7)
[   22.442723] mmc1: SDHCI controller on 3400000.sdhci [3400000.sdhci] using ADMA 64-bit with 64 bit addr
[   22.463083] hid-generic 0003:413C:2113.0001: input,hidraw0: USB HID v1.11 Keyboard [Dell KB216 Wired Keyboard] on usb-3610000.xhci-3.2/input0
[   22.468214] input: Dell KB216 Wired Keyboard as /devices/3610000.xhci/usb1/1-3/1-3.2/1-3.2:1.1/0003:413C:2113.0002/input/input1
[   22.512288] mmc0: mmc_decode_ext_csd: CMDQ supported: depth: 31, cmdq_support: 1
[   22.524949] mmc0: periodic cache flush enabled
[   22.524966] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[   22.525420] mmcblk0: mmc0:0001 HAG4a2 14.7 GiB 
[   22.525620] mmcblk0boot0: mmc0:0001 HAG4a2 partition 1 8.00 MiB
[   22.525771] mmcblk0boot1: mmc0:0001 HAG4a2 partition 2 8.00 MiB
[   22.526745] hid-generic 0003:413C:2113.0002: input,hidraw1: USB HID v1.11 Device [Dell KB216 Wired Keyboard] on usb-3610000.xhci-3.2/input1
[   22.528508] input: PixArt Dell MS116 USB Optical Mouse as /devices/3610000.xhci/usb1/1-3/1-3.3/1-3.3:1.0/0003:413C:301A.0003/input/input2
[   22.528952] hid-generic 0003:413C:301A.0003: input,hidraw2: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-3610000.xhci-3.3/input0
[   22.529007] usbcore: registered new interface driver usbhid
[   22.529010] usbhid: USB HID core driver
[   22.530033] mmcblk0rpmb: mmc0:0001 HAG4a2 partition 3 4.00 MiB
[   22.532921] tegra186-cam-rtcpu bc00000.rtcpu: deferring, 14800000.isp is not probed
[   22.534087] tegra_aon c1a0000.aon: tegra aon driver probe OK
[   22.534553] tegra186-aondbg aondbg: aondbg driver probe() OK
[   22.535047] denver_knobs_init:MTS_VERSION:54811859
[   22.535338] tegra19x_actmon d230000.actmon: in actmon_register()...
[   22.535939] tegra19x_actmon d230000.actmon: initialization Completed for the device mc_all
[   22.536185]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11
[   22.536287] t19x_cache tegra-cache: probed
[   22.538815] misc nvmap: cvsram :dma coherent mem declare 0x0000000050000000,4194304
[   22.538823] misc nvmap: created heap cvsram base 0x0000000050000000 size (4096KiB)
[   22.539262] carmel-pmu-drv carmel-pmu: Registered Carmel PMU
[   22.539572] PLL_AON clock registered
[   22.541783] Clocks initialized successfully
[   22.543576] nvpmodel: initialized successfully
[   22.544827] trusty-virtio trusty:virtio: initializing
[   22.545031] trusty_ipc virtio0: vring0: va(pa)  ffffffc3d822a000(0) qsz 32 notifyid 1
[   22.545060] trusty_ipc virtio0: vring1: va(pa)  ffffffc3d8230000(0) qsz 32 notifyid 2
[   22.545213] trusty-virtio trusty:virtio: initializing done
[   22.545451] trusty_ipc virtio0: is online
[   22.545852] tegra-hda 3510000.hda: Override SDO lines to 4
[   22.546286] usbcore: registered new interface driver snd-usb-audio
[   22.566419] input: tegra-hda-xnx HDMI/DP,pcm=3 as /devices/3510000.hda/sound/card0/input3
[   22.566808] input: tegra-hda-xnx HDMI/DP,pcm=7 as /devices/3510000.hda/sound/card0/input4
[   22.566969] input: tegra-hda-xnx HDMI/DP,pcm=8 as /devices/3510000.hda/sound/card0/input5
[   22.567221] input: tegra-hda-xnx HDMI/DP,pcm=9 as /devices/3510000.hda/sound/card0/input6
[   22.639531] OPE platform probe
[   22.639638] OPE platform probe successful
[   22.714976] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[   22.715102] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[   22.715224] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[   22.715355] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[   22.715476] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[   22.715582] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[   22.715685] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[   22.715785] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[   22.715894] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[   22.716017] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[   22.716114] tegra-asoc: sound: ADMAIF11 <-> ADMAIF11 mapping ok
[   22.716217] tegra-asoc: sound: ADMAIF12 <-> ADMAIF12 mapping ok
[   22.716312] tegra-asoc: sound: ADMAIF13 <-> ADMAIF13 mapping ok
[   22.716410] tegra-asoc: sound: ADMAIF14 <-> ADMAIF14 mapping ok
[   22.716545] tegra-asoc: sound: ADMAIF15 <-> ADMAIF15 mapping ok
[   22.716664] tegra-asoc: sound: ADMAIF16 <-> ADMAIF16 mapping ok
[   22.716801] tegra-asoc: sound: ADMAIF17 <-> ADMAIF17 mapping ok
[   22.716885] tegra-asoc: sound: ADMAIF18 <-> ADMAIF18 mapping ok
[   22.716961] tegra-asoc: sound: ADMAIF19 <-> ADMAIF19 mapping ok
[   22.717060] tegra-asoc: sound: ADMAIF20 <-> ADMAIF20 mapping ok
[   22.744734] u32 classifier
[   22.744741]     Actions configured
[   22.744814] Initializing XFRM netlink socket
[   22.745237] NET: Registered protocol family 10
[   22.745950] NET: Registered protocol family 17
[   22.745965] NET: Registered protocol family 15
[   22.746004] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   22.746098] Bluetooth: RFCOMM socket layer initialized
[   22.746114] Bluetooth: RFCOMM ver 1.11
[   22.746141] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   22.746148] Bluetooth: HIDP socket layer initialized
[   22.746175] 9pnet: Installing 9P2000 support
[   22.746218] Key type dns_resolver registered
[   22.746504] Registered cp15_barrier emulation handler
[   22.746544] Registered setend emulation handler
[   22.748001] registered taskstats version 1
[   22.748416] tegra-pcie-dw 14160000.pcie: Setting init speed to max speed
[   22.749624] OF: PCI: host bridge /pcie@14160000 ranges:
[   22.749648] OF: PCI:    IO 0x36100000..0x361fffff -> 0x36100000
[   22.749657] OF: PCI:   MEM 0x1740000000..0x17ffffffff -> 0x40000000
[   22.749663] OF: PCI:   MEM 0x1400000000..0x173fffffff -> 0x1400000000
[   23.261673] tegra-pcie-dw 14160000.pcie: link is down
[   23.261862] tegra-pcie-dw 14160000.pcie: PCI host bridge to bus 0004:00
[   23.261870] pci_bus 0004:00: root bus resource [bus 00-ff]
[   23.261878] pci_bus 0004:00: root bus resource [io  0x0000-0xfffff] (bus address [0x36100000-0x361fffff])
[   23.261884] pci_bus 0004:00: root bus resource [mem 0x1740000000-0x17ffffffff] (bus address [0x40000000-0xffffffff])
[   23.261889] pci_bus 0004:00: root bus resource [mem 0x1400000000-0x173fffffff pref]
[   23.261917] pci 0004:00:00.0: [10de:1ad1] type 01 class 0x060400
[   23.262059] pci 0004:00:00.0: PME# supported from D0 D3hot D3cold
[   23.262280] iommu: Adding device 0004:00:00.0 to group 59
[   23.262616] pci 0004:00:00.0: PCI bridge to [bus 01-ff]
[   23.262640] pci 0004:00:00.0: Max Payload Size set to  256/ 256 (was  256), Max Read Rq  512
[   23.262905] pcieport 0004:00:00.0: Signaling PME through PCIe PME interrupt
[   23.262912] pcie_pme 0004:00:00.0:pcie001: service driver pcie_pme loaded
[   23.263043] aer 0004:00:00.0:pcie002: service driver aer loaded
[   23.263206] pcie_pme 0004:00:00.0:pcie001: unloading service driver pcie_pme
[   23.263298] aer 0004:00:00.0:pcie002: unloading service driver aer
[   23.263375] pci_bus 0004:01: busn_res: [bus 01-ff] is released
[   23.263448] iommu: Removing device 0004:00:00.0 from group 59
[   23.263484] pci_bus 0004:00: busn_res: [bus 00-ff] is released
[   23.265247] tegra-pcie-dw 14160000.pcie: PCIe link is not up...!
[   23.266207] tegra-pcie-dw 141a0000.pcie: Setting init speed to max speed
[   23.266428] tegra-pcie-dw 141a0000.pcie: Failed to get 3V slot regulator: -19
[   23.266437] tegra-pcie-dw 141a0000.pcie: Failed to get 12V slot regulator: -19
[   23.375035] OF: PCI: host bridge /pcie@141a0000 ranges:
[   23.375056] OF: PCI:    IO 0x3a100000..0x3a1fffff -> 0x3a100000
[   23.375065] OF: PCI:   MEM 0x1f40000000..0x1fffffffff -> 0x40000000
[   23.375070] OF: PCI:   MEM 0x1c00000000..0x1f3fffffff -> 0x1c00000000
[   23.885732] tegra-pcie-dw 141a0000.pcie: link is down
[   23.885909] tegra-pcie-dw 141a0000.pcie: PCI host bridge to bus 0005:00
[   23.885916] pci_bus 0005:00: root bus resource [bus 00-ff]
[   23.885925] pci_bus 0005:00: root bus resource [io  0x100000-0x1fffff] (bus address [0x3a100000-0x3a1fffff])
[   23.885931] pci_bus 0005:00: root bus resource [mem 0x1f40000000-0x1fffffffff] (bus address [0x40000000-0xffffffff])
[   23.885936] pci_bus 0005:00: root bus resource [mem 0x1c00000000-0x1f3fffffff pref]
[   23.885963] pci 0005:00:00.0: [10de:1ad0] type 01 class 0x060400
[   23.886093] pci 0005:00:00.0: PME# supported from D0 D3hot D3cold
[   23.886290] iommu: Adding device 0005:00:00.0 to group 59
[   23.886609] pci 0005:00:00.0: PCI bridge to [bus 01-ff]
[   23.886640] pci 0005:00:00.0: Max Payload Size set to  256/ 256 (was  256), Max Read Rq  512
[   23.886870] pcieport 0005:00:00.0: Signaling PME through PCIe PME interrupt
[   23.886877] pcie_pme 0005:00:00.0:pcie001: service driver pcie_pme loaded
[   23.887010] aer 0005:00:00.0:pcie002: service driver aer loaded
[   23.887216] pcie_pme 0005:00:00.0:pcie001: unloading service driver pcie_pme
[   23.887315] aer 0005:00:00.0:pcie002: unloading service driver aer
[   23.887399] pci_bus 0005:01: busn_res: [bus 01-ff] is released
[   23.887471] iommu: Removing device 0005:00:00.0 from group 59
[   23.887542] pci_bus 0005:00: busn_res: [bus 00-ff] is released
[   23.889045] tegra-pcie-dw 141a0000.pcie: PCIe link is not up...!
[   23.898943] tegra-cbb 14040000.cv-noc: noc_secure_irq = 91, noc_nonsecure_irq = 90>
[   23.903176] tegra194-isp5 14800000.isp: initialized
[   23.909808] tegra194-vi5 15c10000.vi: using default number of vi channels, 36
[   23.912931] tegra194-vi5 15c10000.vi: initialized
[   23.917947] tegra194-vi5 15c10000.vi: subdev 15a00000.nvcsi--2 bound
[   23.918054] tegra194-vi5 15c10000.vi: subdev 15a00000.nvcsi--1 bound
[   23.918241] tegra-thermal-throttle bthrot_cdev: clk:cpu max:1907200000, min:115200000 steps:24
[   23.922379] tegra-thermal-throttle bthrot_cdev: clk:gpu max:1109250000, min:114750000 steps:10
[   23.922392] tegra-thermal-throttle bthrot_cdev: cdev:skin-balanced clk:0:cpu off:0 slope-adj:200
[   23.922397] tegra-thermal-throttle bthrot_cdev: cdev:skin-balanced clk:1:gpu off:0 slope-adj:400
[   23.922469] tegra-thermal-throttle bthrot_cdev: cdev:skin-balanced max_state:48 cutoff:0
[   23.922513] tegra-thermal-throttle bthrot_cdev: cdev:gpu-balanced clk:0:cpu off:0 slope-adj:400
[   23.922517] tegra-thermal-throttle bthrot_cdev: cdev:gpu-balanced clk:1:gpu off:0 slope-adj:400
[   23.926371] tegra-thermal-throttle bthrot_cdev: cdev:gpu-balanced max_state:40 cutoff:1
[   23.926405] tegra-thermal-throttle bthrot_cdev: cdev:cpu-balanced clk:0:cpu off:0 slope-adj:200
[   23.926410] tegra-thermal-throttle bthrot_cdev: cdev:cpu-balanced clk:1:gpu off:365500000 slope-adj:300
[   23.926899] tegra-thermal-throttle bthrot_cdev: cdev:cpu-balanced max_state:48 cutoff:0
[   23.926952] tegra-thermal-throttle bthrot_cdev: cdev:emergency-balanced clk:0:cpu off:38400000 slope-adj:10
[   23.926957] tegra-thermal-throttle bthrot_cdev: cdev:emergency-balanced clk:1:gpu off:25500000 slope-adj:10
[   23.927309] tegra-thermal-throttle bthrot_cdev: cdev:emergency-balanced max_state:2 cutoff:0
[   23.927342] tegra-thermal-throttle bthrot_cdev: cdev:aux-balanced clk:0:cpu off:0 slope-adj:400
[   23.927346] tegra-thermal-throttle bthrot_cdev: cdev:aux-balanced clk:1:gpu off:0 slope-adj:400
[   23.927599] tegra-thermal-throttle bthrot_cdev: cdev:aux-balanced max_state:40 cutoff:1
[   23.928300] tegra186-cam-rtcpu bc00000.rtcpu: Trace buffer configured at IOVA=0xbff00000
[   24.005232] tegra-ivc ivc-bc00000.rtcpu: region 0: iova=0xbfee0000-0xbfefffff size=131072
[   24.005505] tegra-ivc ivc-bc00000.rtcpu:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
[   24.005681] tegra-ivc ivc-bc00000.rtcpu:dbg@1: dbg: ver=0 grp=1 RX[1x384]=0x1900-0x1b00 TX[1x384]=0x1b00-0x1d00
[   24.005909] tegra-ivc ivc-bc00000.rtcpu:dbg@2: dbg: ver=0 grp=1 RX[1x8192]=0x1d00-0x3d80 TX[1x8192]=0x3d80-0x5e00
[   24.006297] tegra-ivc ivc-bc00000.rtcpu:ivccontrol@3: ivccontrol: ver=0 grp=1 RX[64x320]=0x5e00-0xae80 TX[64x320]=0xae80-0xff00
[   24.006382] tegra-ivc ivc-bc00000.rtcpu:ivccapture@4: ivccapture: ver=0 grp=1 RX[512x64]=0xff00-0x17f80 TX[512x64]=0x17f80-0x20000
[   24.006636] tegra186-cam-rtcpu bc00000.rtcpu: using cam RTCPU IRQ (66)
[   24.006641] tegra186-cam-rtcpu bc00000.rtcpu: tegra_camrtc_mon_create is successful
[   24.007357] tegra186-cam-rtcpu bc00000.rtcpu: firmware version cpu=rce cmd=5 sha1=1d7bd17f78528535d57449fa59ec355e37add4f8
[   24.007726] Wake83 for irq=211
[   24.007790] gpio tegra-gpio wake67 for gpio=48(G:0)
[   24.007884] gpio tegra-gpio-aon wake29 for gpio=36(EE:4)
[   24.008035] input: gpio-keys as /devices/gpio-keys/input/input7
[   24.039588] tegra_rtc c2a0000.rtc: setting system clock to 2000-01-01 01:00:38 UTC (946688438)
[   24.040179] mmcblk mmc0:0001: Card claimed for testing.
[   24.074970] bpmp: mounted debugfs mirror
[   24.081387] ALSA device list:
[   24.081392]   #0: tegra-hda-xnx at 0x3518000 irq 65
[   24.081395]   #1: jetson-xaviernx-ape
[   24.083304] Freeing unused kernel memory: 8640K
[   24.122517] Root device found: mmcblk0p1
[   24.124382] Found dev node: /dev/mmcblk0p1
[   24.149525] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[   24.152223] Rootfs mounted over mmcblk0p1
[   24.172936] Switching from initrd to actual rootfs
[   24.272238] systemd[1]: System time before build time, advancing clock.
[   24.292579] ip_tables: (C) 2000-2006 Netfilter Core Team
[   24.296221] cgroup: cgroup2: unknown option "nsdelegate"
[   24.304496] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[   24.305175] systemd[1]: Detected architecture arm64.
[   24.312275] systemd[1]: Set hostname to <ubuntu>.
[   24.395046] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[   24.395077] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[   24.543404] random: systemd: uninitialized urandom read (16 bytes read)
[   24.543462] systemd[1]: Reached target Swap.
[   24.543706] random: systemd: uninitialized urandom read (16 bytes read)
[   24.546447] systemd[1]: Created slice User and Session Slice.
[   24.546745] random: systemd: uninitialized urandom read (16 bytes read)
[   24.547181] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   24.547307] systemd[1]: Reached target User and Group Name Lookups.
[   24.547516] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   24.607820] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[   24.660926] nvgpu: 17000000.gv11b          nvgpu_nvhost_syncpt_init:291  [INFO]  syncpt_unit_base 60000000 syncpt_unit_size 400000 size 1000

[   24.927846] systemd-journald[2445]: Received request to flush runtime journal from PID 1
[   25.789226] random: crng init done
[   25.790938] random: 7 urandom warning(s) missed due to ratelimiting
[   25.902919] cpu-throttle-alert cooling device registered.
[   25.906786] gpu-throttle-alert cooling device registered.
[   25.911649] aux-throttle-alert cooling device registered.
[   25.926889] using random self ethernet address
[   25.930475] using random host ethernet address
[   26.667639] Mass Storage Function, version: 2009/09/11
[   26.667649] LUN: removable file: (no medium)
[   26.685317] using random self ethernet address
[   26.686464] using random host ethernet address
[   26.734333] rndis0: HOST MAC 9a:ed:12:74:29:00
[   26.734863] rndis0: MAC 9a:ed:12:74:29:01
[   26.739202] usb0: HOST MAC 9a:ed:12:74:29:02
[   26.739243] usb0: MAC 9a:ed:12:74:29:03
[   26.739269] tegra-xudc-new 3550000.xudc: exiting ELPG
[   26.739814] tegra-xudc-new 3550000.xudc: exiting ELPG done
[   26.739835] tegra-xudc-new 3550000.xudc: ep 0 (type: 0, dir: out) enabled
[   26.739871] tegra-xudc-new 3550000.xudc: entering ELPG
[   26.740083] tegra-xudc-new 3550000.xudc: entering ELPG done
[   26.740097] tegra-xudc-new 3550000.xudc: exiting ELPG
[   26.740524] tegra-xudc-new 3550000.xudc: exiting ELPG done
[   26.740538] tegra-xudc-new 3550000.xudc: entering ELPG
[   26.740718] tegra-xudc-new 3550000.xudc: entering ELPG done
[   26.752880] l4tbr0: port 1(rndis0) entered blocking state
[   26.752889] l4tbr0: port 1(rndis0) entered disabled state
[   26.753913] device rndis0 entered promiscuous mode
[   26.769311] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[   26.780168] l4tbr0: port 2(usb0) entered blocking state
[   26.780178] l4tbr0: port 2(usb0) entered disabled state
[   26.781103] device usb0 entered promiscuous mode
[   26.789774] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.895158] ras_fhi_disable: FHI 474 disabled
[   26.895931] CPU4: shutdown
[   26.897179] psci: CPU4 killed (polled 0 ms)
[   26.975158] ras_fhi_disable: FHI 475 disabled
[   26.976294] CPU5: shutdown
[   26.977368] psci: CPU5 killed (polled 0 ms)
[   27.002380] nvgpu: 17000000.gv11b                 tpc_pg_mask_store:843  [INFO]  no value change, same mask already set
[   27.111487] gpio tegra-gpio wake20 for gpio=52(G:4)
[   27.116371] net eth0: get_configure_l3v4_filter -->
[   27.117146] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   27.121879] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[   27.250803] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   27.254454] zram: Added device: zram0
[   27.264962] zram: Added device: zram1
[   27.268202] zram: Added device: zram2
[   27.271688] zram: Added device: zram3
[   27.292558] zram0: detected capacity change from 0 to 2073223168
[   27.371393] Adding 2024628k swap on /dev/zram0.  Priority:5 extents:1 across:2024628k SS
[   27.379889] zram1: detected capacity change from 0 to 2073223168
[   27.392969] Adding 2024628k swap on /dev/zram1.  Priority:5 extents:1 across:2024628k SS
[   27.397861] zram2: detected capacity change from 0 to 2073223168
[   27.419112] Adding 2024628k swap on /dev/zram2.  Priority:5 extents:1 across:2024628k SS
[   27.423614] zram3: detected capacity change from 0 to 2073223168
[   27.448456] Adding 2024628k swap on /dev/zram3.  Priority:5 extents:1 across:2024628k SS
[   27.807170] ax88179_178a 1-3.1:1.0 eth1: Failed to read reg index 0x0040: -32
[   28.125245] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   28.161773] Bridge firewalling registered
[   28.234675] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[   28.561893] Netfilter messages via NETLINK v0.30.
[   28.570501] ctnetlink v0.93: registering with nfnetlink.
[   28.770210] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[   28.855863] tegradc 15200000.nvdisplay: unblank
[   28.855882] tegradc 15210000.nvdisplay: blank - powerdown
[   29.875936] fuse init (API version 7.26)
[   32.700227] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   32.700243] Bluetooth: BNEP socket layer initialized
[   44.391514] tegradc 15200000.nvdisplay: blank - powerdown
[   44.453267] extcon-disp-state external-connection:disp-state: cable 47 state 0
[   44.453272] Extcon AUX1(HDMI) disable
[   44.477691] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[   44.479543] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[   44.479722] tegradc 15210000.nvdisplay: blank - powerdown
[   44.652427] tegradc 15200000.nvdisplay: blank - powerdown
[   44.652444] tegradc 15200000.nvdisplay: unblank
[   44.653187] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[   44.653294] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[   44.655070] Parent Clock set for DC plld2
[   44.660061] tegradc 15200000.nvdisplay: hdmi: tmds rate:50250K prod-setting:prod_c_hdmi_0m_54m
[   44.661347] tegradc 15200000.nvdisplay: hdmi: get YCC quant from EDID.
[   44.699170] extcon-disp-state external-connection:disp-state: cable 47 state 1
[   44.699173] Extcon AUX1(HDMI) enable
[   44.699237] tegradc 15200000.nvdisplay: unblank
[   44.699599] tegradc 15210000.nvdisplay: blank - powerdown
[   48.281187] tegradc 15200000.nvdisplay: unblank
[   48.281201] tegradc 15210000.nvdisplay: blank - powerdown
[   50.959082] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[   54.618758] vdd-sdmmc1-sw: disabling
[   54.618790] vdd-1v8-sd: disabling
[   54.618796] vdd-1v8-cvb: disabling
[   54.618801] vdd-epb-1v0: disabling
[   54.618806] avdd-cam-2v8: disabling
[   54.618812] vdd-fan: disabling
[   54.618818] vdd_sys_en: disabling

Hi,

Just check this internally.

Nano devkit is not compatible with XavierNX devkit.
‘XavierNX emmc+ Nano B01 carrier board’ is not a supported use case.

Please get a XavierNX board instead.
Thanks.

1 Like

Can XavierNX emmc 16g use with a XavierNX emmc 8g devkit board?
I only buy a XavierNX emmc 16g moudle, my friend have a XavierNX emmc 8g devkit.

1 Like

Yes, that’s compatible.

1 Like

I fix it.
thks for LZM of whut.
use sdkmanager flash.
step 1:only flashing os image of 4.6.1.
step 2:flash other packs of 4.5.1
some packs will failed to falsh,but its ok.
step3:open jetson, u will see a jetpack4.6.1 with tensorRT 7 whitchcan run

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.