-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MetaSchedule] Add Per-Store-Feature (#9860)
* [MetaSchedule] Add Per-Store-Feature Co-authored-by: Xiyou Zhou <xiyou@octoml.ai> Co-authored-by: Bohan Hou <32121147+spectrometerHBH@users.noreply.github.com> Co-authored-by: Ruihang Lai <lairuihangdongdong@qq.com> Co-authored-by: Hongyi Jin <3231950289@qq.com> Co-authored-by: Wuwei Lin <wuwei@apache.org> Co-authored-by: Siyuan Feng <Hzfengsy@sjtu.edu.cn> * fix lint * fix lint * Update per_store_feature.py * address comments * fix lint Co-authored-by: Xiyou Zhou <xiyou@octoml.ai> Co-authored-by: Bohan Hou <32121147+spectrometerHBH@users.noreply.github.com> Co-authored-by: Ruihang Lai <lairuihangdongdong@qq.com> Co-authored-by: Hongyi Jin <3231950289@qq.com> Co-authored-by: Wuwei Lin <wuwei@apache.org> Co-authored-by: Siyuan Feng <Hzfengsy@sjtu.edu.cn>
- Loading branch information
1 parent
38f0239
commit ab8a106
Showing
10 changed files
with
3,034 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
python/tvm/meta_schedule/feature_extractor/per_store_feature.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
"""We extract one feature vector per BufferStoreNode statement in a TIR Stmt, | ||
so we call this feature as "per-store" feature. | ||
""" | ||
from tvm._ffi import register_object | ||
|
||
from .. import _ffi_api | ||
from .feature_extractor import FeatureExtractor | ||
|
||
|
||
@register_object("meta_schedule.PerStoreFeature") | ||
class PerStoreFeature(FeatureExtractor): | ||
"""PerStoreFeature extracts one feature vector per BufferStoreNode | ||
Parameters | ||
---------- | ||
buffers_per_store : int | ||
The number of buffers in each BufferStore; Pad or truncate if necessary. | ||
arith_intensity_curve_num_samples : int | ||
The number of samples used in the arithmetic intensity curve. | ||
cache_line_bytes : int | ||
The number of bytes in a cache line. | ||
""" | ||
|
||
buffers_per_store: int | ||
"""The number of buffers in each BufferStore; Pad or truncate if necessary.""" | ||
arith_intensity_curve_num_samples: int # pylint: disable=invalid-name | ||
"""The number of samples used in the arithmetic intensity curve.""" | ||
cache_line_bytes: int | ||
"""The number of bytes in a cache line.""" | ||
feature_vector_length: int | ||
"""Length of the feature vector.""" | ||
|
||
def __init__( | ||
self, | ||
buffers_per_store: int = 5, | ||
arith_intensity_curve_num_samples: int = 10, | ||
cache_line_bytes: int = 64, | ||
): | ||
self.__init_handle_by_constructor__( | ||
_ffi_api.FeatureExtractorPerStoreFeature, # type: ignore # pylint: disable=no-member | ||
buffers_per_store, | ||
arith_intensity_curve_num_samples, | ||
cache_line_bytes, | ||
) |
Oops, something went wrong.