This repository was archived by the owner on Apr 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ size_t computeThreadIdxXScheduleDepth(
271
271
*
272
272
* In particular, check if incrementing the schedule dimension mapped to
273
273
* Thread::x results in the last tensor index being incremented as well.
274
- * Since accesses in the group may belong to different statements, which are
274
+ * Since accesses in the group may belong to different statements, which may
275
275
* have different loops mapped to Thread::x, perform the check for each basic
276
276
* map in the union of access maps taking into account which dimension is
277
277
* mapped for a particular statement (domain of the basic map). The group is
Original file line number Diff line number Diff line change @@ -497,14 +497,14 @@ ScheduleTree* insertCopiesUnder(
497
497
isl::set::universe (promotionSpace.domain ().unwrap ().domain ());
498
498
auto arrayId =
499
499
promotionSpace.domain ().unwrap ().get_tuple_id (isl::dim_type::out);
500
- auto approximattedRead =
500
+ auto approximatedRead =
501
501
isl::map (
502
502
scheduleUniverse,
503
503
group.approximateFootprint ().set_tuple_id (arrayId).intersect (
504
504
tensorElements))
505
505
.wrap ();
506
- approximattedRead = isl::map (approximattedRead , promotedFootprint).wrap ();
507
- auto readExtension = extension.intersect_range (approximattedRead )
506
+ approximatedRead = isl::map (approximatedRead , promotedFootprint).wrap ();
507
+ auto readExtension = extension.intersect_range (approximatedRead )
508
508
.set_tuple_id (isl::dim_type::out, readId);
509
509
auto writtenElements =
510
510
isl::map (
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ bool refersToUndefinedParameters(
368
368
return false ;
369
369
}
370
370
371
- // If space uses some parameters that are not avaialbe in paramSpace,
371
+ // If space uses some parameters that are not available in paramSpace,
372
372
// they will be introduced into paramSpace, making its dimension larger.
373
373
auto definedParams = paramSpace.dim (isl::dim_type::param);
374
374
paramSpace = paramSpace.align_params (space);
You can’t perform that action at this time.
0 commit comments