Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TensorRT EP] Load precompiled TRT engine file directly #18217

Merged
merged 53 commits into from
Jan 12, 2024

remove unnecessary code

28bdd0a
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

[TensorRT EP] Load precompiled TRT engine file directly #18217

remove unnecessary code
28bdd0a
Select commit
Loading
Failed to load commit list.
GitHub Actions / cpplint completed Jan 12, 2024 in 3s

reviewdog [cpplint] report

reported by reviewdog 🐶

Findings (130)

include/onnxruntime/core/providers/tensorrt/tensorrt_provider_options.h|50| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|8| Include the directory when naming header files [build/include_subdir] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|162| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|163| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|164| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|176| Using C-style cast. Use reinterpret_cast<char*>(...) instead [readability/casting] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|177| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|200| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|209| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|221| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|84| Add #include for vector<> [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc|177| Add #include for unique_ptr<> [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|14| For a static/global string constant, use a C style string instead: "static const char EPCONTEXT_OP[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|15| For a static/global string constant, use a C style string instead: "static const char EMBED_MODE[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|16| For a static/global string constant, use a C style string instead: "static const char EP_CACHE_CONTEXT[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|17| For a static/global string constant, use a C style string instead: "static const char COMPUTE_CAPABILITY[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|18| For a static/global string constant, use a C style string instead: "static const char EPCONTEXT_OP_DOMAIN[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|41| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h|50| Add #include for unique_ptr<> [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|14| Include the directory when naming header files [build/include_subdir] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|1539| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|1544| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|1549| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|1553| Redundant blank line at the end of a code block should be deleted. [whitespace/blank_line] [3]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2309| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2310| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2523| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2558| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2567| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2599| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2605| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2621| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2651| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2654| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2682| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2685| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2686| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2707| An else should appear on the same line as the preceding } [whitespace/newline] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2707| If an else has a brace on one side, it should have it on both [readability/braces] [5]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2715| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2722| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2738| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2760| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2782| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2788| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2790| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2833| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2847| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2851| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2853| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2867| Using C-style cast. Use reinterpret_cast<char*>(...) instead [readability/casting] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2868| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2874| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2887| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2891| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2923| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2926| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2928| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2935| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2947| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2978| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2981| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|2997| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3040| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3041| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3058| Missing username in TODO; it should look like "// TODO(my_username): Stuff." [readability/todo] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3070| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3074| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3091| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3092| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3114| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3125| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3151| Using C-style cast. Use reinterpret_cast<char*>(...) instead [readability/casting] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3165| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3183| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3186| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3200| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3203| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3205| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3212| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3231| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3289| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3320| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3334| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3336| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3342| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3367| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3422| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3455| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3468| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3507| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3516| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3521| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3528| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3529| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3530| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3547| Small and focused functions are preferred: TensorrtExecutionProvider::CreateNodeComputeInfoFromGraph() has 778 non-comment lines (error triggered by exceeding 500 lines). [readability/fn_size] [1]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3551| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3552| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3553| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3617| Missing username in TODO; it should look like "// TODO(my_username): Stuff." [readability/todo] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3664| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3703| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3736| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3749| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3788| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3797| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3802| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3809| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3810| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3811| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3654| Add #include for string [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc|3701| Add #include for vector<> [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.h|49| For a static/global string constant, use a C style string instead: "static const char kDumpEpContextModel[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.h|50| For a static/global string constant, use a C style string instead: "static const char kEpContextEmbedMode[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.h|51| For a static/global string constant, use a C style string instead: "static const char kEpContextComputeCapabilityEnable[]". [runtime/string] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.h|533| Add #include for string [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.h|533| Add #include <unordered_map> for unordered_map<> [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.h|534| Add #include for vector<> [build/include_what_you_use] [4]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider_info.cc|105| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider_info.cc|149| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider_info.cc|200| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider_info.cc|201| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider_info.cc|202| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider_info.cc|296| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/session/provider_bridge_ort.cc|451| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/core/session/provider_bridge_ort.cc|475| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/python/onnxruntime_pybind_state.cc|722| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/python/onnxruntime_pybind_state.cc|728| Lines should be <= 120 characters long [whitespace/line_length] [2]
onnxruntime/python/onnxruntime_pybind_state.cc|736| Lines should be <= 120 characters long [whitespace/line_length] [2]

Filtered Findings (818774)

build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|| No copyright message found. You should have a line: "Copyright [year] " [legal/copyright] [5]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|50| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|54| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|149| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|154| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|325| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|347| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|413| Lines should be <= 120 characters long [whitespace/line_length] [2]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|763| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|768| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|774| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|781| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|782| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|783| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|792| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|797| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdC/CMakeCCompilerId.c|803| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|| No copyright message found. You should have a line: "Copyright [year] " [legal/copyright] [5]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|50| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|54| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|149| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|154| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|319| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|341| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|411| Lines should be <= 120 characters long [whitespace/line_length] [2]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|748| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|753| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|759| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|766| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|767| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|768| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|777| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|782| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|788| Missing space after , [whitespace/comma] [3]
build/Debug/CMakeFiles/3.28.1/CompilerIdCXX/CMakeCXXCompilerId.cpp|845| { should almost always be at the end of the previous line [whitespace/braces] [4]
build/Debug/_deps/abseil_cpp-src/absl/algorithm/algorithm.h|22| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_ALGORITHM_ALGORITHM_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/algorithm/algorithm.h|64| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_ALGORITHM_ALGORITHM_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/algorithm/container.h|40| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_ALGORITHM_CONTAINER_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/algorithm/container.h|1730| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_ALGORITHM_CONTAINER_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/attributes.h|34| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_ATTRIBUTES_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/attributes.h|878| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_ATTRIBUTES_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/call_once.h|25| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CALL_ONCE_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/call_once.h|225| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CALL_ONCE_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/call_once_test.cc|17| is an unapproved C++11 header. [build/c++11] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/call_once_test.cc|64| Using C-style cast. Use reinterpret_cast<void*>(...) instead [readability/casting] [4]
build/Debug/_deps/abseil_cpp-src/absl/base/casts.h|24| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CASTS_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/casts.h|180| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CASTS_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/config.h|48| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CONFIG_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/config.h|1004| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CONFIG_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/config.h|1000| Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent] [3]
build/Debug/_deps/abseil_cpp-src/absl/base/const_init.h|22| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CONST_INIT_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/const_init.h|76| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_CONST_INIT_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/dynamic_annotations.h|45| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_DYNAMIC_ANNOTATIONS_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/dynamic_annotations.h|496| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_DYNAMIC_ANNOTATIONS_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/exception_safety_testing_test.cc|477| Add #include for move [build/include_what_you_use] [4]
build/Debug/_deps/abseil_cpp-src/absl/base/exception_safety_testing_test.cc|588| Add #include for unique_ptr<> [build/include_what_you_use] [4]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/atomic_hook.h|15| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ATOMIC_HOOK_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/atomic_hook.h|200| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ATOMIC_HOOK_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/atomic_hook_test_helper.h|15| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ATOMIC_HOOK_TEST_HELPER_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/atomic_hook_test_helper.h|34| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ATOMIC_HOOK_TEST_HELPER_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/cmake_thread_test.cc|21| Using C-style cast. Use reinterpret_cast<void*>(...) instead [readability/casting] [4]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/cycleclock.h|42| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_CYCLECLOCK_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/cycleclock.h|144| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_CYCLECLOCK_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/cycleclock_config.h|15| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_CYCLECLOCK_CONFIG_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/cycleclock_config.h|55| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_CYCLECLOCK_CONFIG_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/direct_mmap.h|18| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_DIRECT_MMAP_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/direct_mmap.h|170| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_DIRECT_MMAP_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/direct_mmap.h|130| Use int16/int64/etc, rather than the C type long [runtime/int] [4]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/dynamic_annotations.h|45| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_DYNAMIC_ANNOTATIONS_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/dynamic_annotations.h|398| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_DYNAMIC_ANNOTATIONS_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/endian.h|16| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ENDIAN_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/endian.h|283| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ENDIAN_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/endian_test.cc|86| Add #include for swap [build/include_what_you_use] [4]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/errno_saver.h|15| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ERRNO_SAVER_H_ [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/errno_saver.h|43| #endif line should be "#endif // BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_ERRNO_SAVER_H_" [build/header_guard] [5]
build/Debug/_deps/abseil_cpp-src/absl/base/internal/exception_safety_testing.h|17| #ifndef header guard has wrong style, please use: BUILD_DEBUG__DEPS_ABSEIL_CPP_SRC_ABSL_BASE_INTERNAL_EXCEPTION_SAFETY_TESTING_H_ [build/header_guard] [5]
... (Too many findings. Dropped some findings)

Annotations

Check warning on line 50 in include/onnxruntime/core/providers/tensorrt/tensorrt_provider_options.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] include/onnxruntime/core/providers/tensorrt/tensorrt_provider_options.h#L50

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
include/onnxruntime/core/providers/tensorrt/tensorrt_provider_options.h:50:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 8 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L8

 Include the directory when naming header files  [build/include_subdir] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:8:  Include the directory when naming header files  [build/include_subdir] [4]

Check warning on line 162 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L162

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:162:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 163 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L163

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:163:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 164 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L164

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:164:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 176 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L176

 Using C-style cast.  Use reinterpret_cast<char*>(...) instead  [readability/casting] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:176:  Using C-style cast.  Use reinterpret_cast<char*>(...) instead  [readability/casting] [4]

Check warning on line 177 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L177

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:177:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 200 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L200

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:200:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 209 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L209

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:209:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 221 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L221

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:221:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 84 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L84

 Add #include <vector> for vector<>  [build/include_what_you_use] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:84:  Add #include <vector> for vector<>  [build/include_what_you_use] [4]

Check warning on line 177 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc#L177

 Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.cc:177:  Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]

Check warning on line 14 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L14

 For a static/global string constant, use a C style string instead: "static const char EPCONTEXT_OP[]".  [runtime/string] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:14:  For a static/global string constant, use a C style string instead: "static const char EPCONTEXT_OP[]".  [runtime/string] [4]

Check warning on line 15 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L15

 For a static/global string constant, use a C style string instead: "static const char EMBED_MODE[]".  [runtime/string] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:15:  For a static/global string constant, use a C style string instead: "static const char EMBED_MODE[]".  [runtime/string] [4]

Check warning on line 16 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L16

 For a static/global string constant, use a C style string instead: "static const char EP_CACHE_CONTEXT[]".  [runtime/string] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:16:  For a static/global string constant, use a C style string instead: "static const char EP_CACHE_CONTEXT[]".  [runtime/string] [4]

Check warning on line 17 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L17

 For a static/global string constant, use a C style string instead: "static const char COMPUTE_CAPABILITY[]".  [runtime/string] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:17:  For a static/global string constant, use a C style string instead: "static const char COMPUTE_CAPABILITY[]".  [runtime/string] [4]

Check warning on line 18 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L18

 For a static/global string constant, use a C style string instead: "static const char EPCONTEXT_OP_DOMAIN[]".  [runtime/string] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:18:  For a static/global string constant, use a C style string instead: "static const char EPCONTEXT_OP_DOMAIN[]".  [runtime/string] [4]

Check warning on line 41 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L41

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:41:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 50 in onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h#L50

 Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]
Raw output
onnxruntime/core/providers/tensorrt/onnx_ctx_model_helper.h:50:  Add #include <memory> for unique_ptr<>  [build/include_what_you_use] [4]

Check warning on line 14 in onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc#L14

 Include the directory when naming header files  [build/include_subdir] [4]
Raw output
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc:14:  Include the directory when naming header files  [build/include_subdir] [4]

Check warning on line 1539 in onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc#L1539

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc:1539:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 1544 in onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc#L1544

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc:1544:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 1549 in onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc#L1549

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc:1549:  Lines should be <= 120 characters long  [whitespace/line_length] [2]

Check warning on line 1553 in onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc#L1553

 Redundant blank line at the end of a code block should be deleted.  [whitespace/blank_line] [3]
Raw output
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc:1553:  Redundant blank line at the end of a code block should be deleted.  [whitespace/blank_line] [3]

Check warning on line 2309 in onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc

See this annotation in the file changed.

@github-actions github-actions / cpplint

[cpplint] onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc#L2309

 Lines should be <= 120 characters long  [whitespace/line_length] [2]
Raw output
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc:2309:  Lines should be <= 120 characters long  [whitespace/line_length] [2]