Skip to content

Commit

Permalink
Drop VectorizationInfo.space
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Dec 19, 2024
1 parent 1e955e8 commit f465946
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions loopy/codegen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,6 @@ class VectorizationInfo:

iname: str
length: int
# FIXME why is this here?
space: isl.Space


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion loopy/codegen/loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def generate_vectorize_loop(codegen_state, sched_index):
vectorization_info=VectorizationInfo(
iname=iname,
length=length,
space=length_aff.space))
))

return build_loop_nest(new_codegen_state, sched_index+1)

Expand Down

0 comments on commit f465946

Please sign in to comment.