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

Dynamic Batch Support for TRT #6955

Merged
merged 34 commits into from
Dec 1, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Space typo
  • Loading branch information
Ubuntu committed Nov 24, 2020
commit 13be588c7b0bc602f1ec78f05dbb0c503dddac5e
2 changes: 1 addition & 1 deletion src/runtime/contrib/tensorrt/tensorrt_runtime.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class TensorRTRuntime : public JSONRuntimeBase {
// Build engine.
trt_engine_cache_[std::make_pair(symbol_name_, batch_size_)] = builder.BuildEngine();
LOG(INFO) << "Finished building TensorRT engine for subgraph " << symbol_name_
<< " with batch size" << batch_size_;
<< " with batch size " << batch_size_;
CacheEngineToDisk();
}

Expand Down