Skip to content

Commit bf6645f

Browse files
committed
lint
1 parent 6aee084 commit bf6645f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/partitioning/partitioning.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ void resolveTRTNonTensorInputs(PartitionedGraph& segmented_blocks) {
178178

179179
void registerSegmentsOutputs(PartitionedGraph& segmented_blocks, torch::jit::Block* block) {
180180
// find the corresponding raw values in original global graph for this segmented block's inputs/outputs
181-
auto cmp = [](torch::jit::Value* a, torch::jit::Value* b) { return a->unique() < b->unique();};
181+
auto cmp = [](torch::jit::Value* a, torch::jit::Value* b) { return a->unique() < b->unique(); };
182182
std::set<torch::jit::Value*, decltype(cmp)> input_values(cmp);
183183
for (auto& seg_block : segmented_blocks) {
184184
for (auto& input : seg_block.raw_inputs()) {

0 commit comments

Comments
 (0)