forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature Extraction] Group 1 Feature (apache#77)
* [Feature Extraction] Group 1 Feature * add python files * add test file * fixed bug: order of visiting
- Loading branch information
1 parent
4a771b4
commit d3f1f1c
Showing
5 changed files
with
496 additions
and
22 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
66 changes: 66 additions & 0 deletions
66
python/tvm/meta_schedule/feature_extractor/per_block_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,66 @@ | ||
# 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 BlockRealizeNode statement in a TIR Stmt, | ||
so we call this feature as "per-block" feature. | ||
""" | ||
from tvm._ffi import register_object | ||
|
||
from .. import _ffi_api | ||
from .feature_extractor import FeatureExtractor | ||
|
||
|
||
@register_object("meta_schedule.PerBlockFeature") | ||
class PerBlockFeature(FeatureExtractor): | ||
"""PerBlockFeature extracts one feature vector per BlockRealizeNode | ||
Parameters | ||
---------- | ||
buffers_per_block : int | ||
The number of buffers in each BlockRealizeNode; 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. | ||
extract_workload : bool | ||
Whether to extract features in the workload in tuning context or not. | ||
""" | ||
|
||
buffers_per_block: int | ||
"""The number of buffers in each BlockRealizeNode; 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.""" | ||
extract_workload: bool | ||
"""Whether to extract features in the workload in tuning context or not.""" | ||
feature_vector_length: int | ||
"""Length of the feature vector.""" | ||
|
||
def __init__( | ||
self, | ||
buffers_per_block: int = 5, | ||
arith_intensity_curve_num_samples: int = 10, | ||
cache_line_bytes: int = 64, | ||
extract_workload: bool = False, | ||
): | ||
self.__init_handle_by_constructor__( | ||
_ffi_api.FeatureExtractorPerBlockFeature, # type: ignore # pylint: disable=no-member | ||
buffers_per_block, | ||
arith_intensity_curve_num_samples, | ||
cache_line_bytes, | ||
extract_workload, | ||
) |
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
Oops, something went wrong.