Skip to content

Commit 9b287af

Browse files
committed
Remove trailing space
1 parent fdabccf commit 9b287af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/relax/transform/static_plan_block_memory.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ void SetTIRVarRangeConstraints(Function func, arith::Analyzer* ana,
406406

407407
if (it_upper != var_upper_bound_attr.end() || it_lower != var_lower_bound_attr.end()) {
408408
int64_t lower = (it_lower != var_lower_bound_attr.end()) ? it_lower->second->value : 0;
409-
int64_t upper = (it_upper != var_upper_bound_attr.end())
409+
int64_t upper = (it_upper != var_upper_bound_attr.end())
410410
? it_upper->second->value : std::numeric_limits<int64_t>::max();
411411
tvm::Range range =
412412
tvm::Range::FromMinExtent(tvm::IntImm(DataType::Int(64), lower),

0 commit comments

Comments
 (0)