Skip to content

Commit a720f91

Browse files
committed
refactor: A couple more renames
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent 59113cf commit a720f91

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/pr-labels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"component: evaluators":
1717
- core/conversion/evaluators/**/*
1818

19-
"component: execution":
20-
- core/execution/**/*
19+
"component: runtime":
20+
- core/runtime/**/*
2121

2222
"component: lowering":
2323
- core/lowering/**/*
@@ -32,4 +32,4 @@
3232
"documentation":
3333
- docs/**/*
3434
- docsrc/**/*
35-
35+

core/runtime/register_trt_op.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ std::vector<at::Tensor> execute_engine(std::vector<at::Tensor> inputs, c10::intr
3030
gpu_handles.push_back(contig_inputs.back().data_ptr());
3131
}
3232

33-
TRTORCH_CHECK(compiled_engine->exec_ctx->allInputDimensionsSpecified(), "Not enough inputs provided (execution.RunCudaEngine)");
33+
TRTORCH_CHECK(compiled_engine->exec_ctx->allInputDimensionsSpecified(), "Not enough inputs provided (runtime.RunCudaEngine)");
3434

3535
std::vector<at::Tensor> outputs(compiled_engine->num_io.second);
3636
for (size_t o = inputs.size(); o < (compiled_engine->num_io.first + compiled_engine->num_io.second); o++) {
@@ -53,6 +53,6 @@ TORCH_LIBRARY(tensorrt, m) {
5353
m.def("execute_engine", execute_engine);
5454
}
5555

56-
} // namespace execution
56+
} // namespace runtime
5757
} // namespace core
5858
} // namespace trtorch

0 commit comments

Comments
 (0)