Skip to content

Commit

Permalink
updating trt workspace int64 (#1094)
Browse files Browse the repository at this point in the history
Signed-off-by: Manix <[email protected]>
  • Loading branch information
manickavela29 authored Jul 8, 2024
1 parent 4fd0493 commit 3e4307e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sherpa-onnx/csrc/provider-config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void TensorrtConfig::Register(ParseOptions *po) {

bool TensorrtConfig::Validate() const {
if (trt_max_workspace_size < 0) {
SHERPA_ONNX_LOGE("trt_max_workspace_size: %d is not valid.",
SHERPA_ONNX_LOGE("trt_max_workspace_size: %lld is not valid.",
trt_max_workspace_size);
return false;
}
Expand Down
4 changes: 2 additions & 2 deletions sherpa-onnx/csrc/provider-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct CudaConfig {
};

struct TensorrtConfig {
int32_t trt_max_workspace_size = 2147483647;
int64_t trt_max_workspace_size = 2147483647;
int32_t trt_max_partition_iterations = 10;
int32_t trt_min_subgraph_size = 5;
bool trt_fp16_enable = true;
Expand All @@ -39,7 +39,7 @@ struct TensorrtConfig {
bool trt_dump_subgraphs = false;

TensorrtConfig() = default;
TensorrtConfig(int32_t trt_max_workspace_size,
TensorrtConfig(int64_t trt_max_workspace_size,
int32_t trt_max_partition_iterations,
int32_t trt_min_subgraph_size,
bool trt_fp16_enable,
Expand Down
2 changes: 1 addition & 1 deletion sherpa-onnx/python/csrc/tensorrt-config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void PybindTensorrtConfig(py::module *m) {
using PyClass = TensorrtConfig;
py::class_<PyClass>(*m, "TensorrtConfig")
.def(py::init<>())
.def(py::init([](int32_t trt_max_workspace_size,
.def(py::init([](int64_t trt_max_workspace_size,
int32_t trt_max_partition_iterations,
int32_t trt_min_subgraph_size,
bool trt_fp16_enable,
Expand Down

0 comments on commit 3e4307e

Please sign in to comment.