-
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.
[Meta Schedule][M3c] Schedule Rules, Mutator & Postprocs (#485) [Meta Schedule][M3c] PostOrderApply (#486) Fix Post Order Apply (#490) [MetaSchedule] Relay Integration (#489) [M3c][Meta Schedule] Add Trace Correctness Test for PostOrderApply (#492) Fix replay trace. (#493) [M3c][Meta Schedule] Implement the Replay Func class. (#495) [PR] Test script for meta-schedule task extraction. Interface to load… (#494) [Meta Schedule Refactor] Get child blocks (#500) Read-at && Write-at (#497) [M3c][Meta Schedule] Measure Callbacks (#498) [Bug] Fix Infinite Loop Caused When Calling Methods Not Overrided In PyClass (#496) [MetaSchedule] Sample-Perfect-Tile (#501) [MetaSchedule] TE Workloads (#502) [TensorIR] GetProducer, GetConsumer (#506) [MetaScheduleRefactor] Annotate&Unannotate (#505) [MetaSchedule] Multi-Level-Tiling & Auto-Inline (#503) [Tests] Add unittests for auto-inline and multi-level-tiling (#508) [Meta Schedule] Minor Fixes (#507) [MetaSchedule] Rewrite Cooperative-Fetching / Unbound-Block / Reduction-Block (#509) [MetaSchedule] Rewrite Parallel-Vectorize-Unroll / Verify-GPU / Disallow-Dynamic-Loops (#499) [Meta Schedule] Add Helper Function & Minor Modification (#512) [MetaSchedule] Test for Rewrite Parallel-Vectorize-Unroll (#513) [Meta Schedule] Feature Extractor & Cost Model (#510) Blockize & Tensorize (#514) Layout Rewriting: Suggest-Index-Map (#520) [MetaSchedule] Parallel-Vectorize-Unroll & Random-Compute-Location (#516) [Meta Schedule] Per-Store-Feature (#521) Add traced schedule for blockize & tensorize (#526) [Meta Schedule] Add XGBoost Model & Random Model (#519) User-Interface: Tune-TIR (#525) User-Interface: Tune-TE (#527) [Minor] More logging on python (#528) Get CUDA tuning working (#529) [MetaSchedule] TensorRT BYOC (#518) [BugFix] LocalBuilder API (#531) [Meta Schedule] Add Cost Model Update Measure Callback (#530) [Bugfix] BuilderInput with default params (#532) [MetaSchedule] Mutator-Tile-Size, Mutate-Parallel, Mutate-Unroll (#534) [Meta Schedule] Evolutionary Search (#522) [BugFix] Remove duplicated definition of MakeMultinomialSampler (#535) [Meta Schedule] Fix some bugs (#537) Initiate Experiments for CPU Performance Alignment with Ansor (#538) [Meta Schedule] Tweak experiment scripts (#539) [Meta Schedule] Initiate experiments on CUDA (#540) [TIR][Schedule] Buffer transform (#523) Auto Tensor Core (#524) Working on Evo Search (#542) [Meta Schedule] Add Replay Tuning Interface (#543) Evolutionary Search on CPU (#544) Misc improvement over the error message (#545) [TIR][Schedule] Software pipelining (#533) [Meta Schedule Refactor] fixing unit tests (#547) [MetaSchedule] Mutator-Compute-Location (#548) Misc Improvement of Evolutionary Search (#549) Hotfix for software pipeline (#552) Misc Improvement (#550) Co-authored-by: Siyuan Feng <[email protected]> Co-authored-by: Bohan Hou <[email protected]> Co-authored-by: Hongyi Jin <[email protected]> Co-authored-by: Ruihang Lai <[email protected]> Co-authored-by: Junru Shao <[email protected]> Co-authored-by: Wuwei Lin <[email protected]> Co-authored-by: Sunghyun Park <[email protected]> Co-authored-by: Xiyou Zhou <[email protected]>
- Loading branch information
1 parent
1f5f3c9
commit af69e7a
Showing
228 changed files
with
28,472 additions
and
400 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
#ifndef TVM_META_SCHEDULE_COST_MODEL_H_ | ||
#define TVM_META_SCHEDULE_COST_MODEL_H_ | ||
|
||
#include <tvm/meta_schedule/search_strategy.h> | ||
|
||
#include <vector> | ||
|
||
namespace tvm { | ||
namespace meta_schedule { | ||
|
||
class TuneContext; | ||
|
||
/*! \brief Cost model. */ | ||
class CostModelNode : public runtime::Object { | ||
public: | ||
/*! \brief Virtual destructor. */ | ||
virtual ~CostModelNode() = default; | ||
|
||
void VisitAttrs(tvm::AttrVisitor* v) {} | ||
|
||
/*! | ||
* \brief Load the cost model from given file location. | ||
* \param path The file path. | ||
*/ | ||
virtual void Load(const String& path) = 0; | ||
|
||
/*! | ||
* \brief Save the cost model to given file location. | ||
* \param path The file path. | ||
*/ | ||
virtual void Save(const String& path) = 0; | ||
|
||
/*! | ||
* \brief Update the cost model given running results. | ||
* \param tune_context The tuning context. | ||
* \param candidates The measure candidates. | ||
* \param results The running results of the measure candidates. | ||
*/ | ||
virtual void Update(const TuneContext& tune_context, const Array<MeasureCandidate>& candidates, | ||
const Array<RunnerResult>& results) = 0; | ||
|
||
/*! | ||
* \brief Predict the normalized score (the larger the better) of given measure candidates. | ||
* \param tune_context The tuning context. | ||
* \param candidates The measure candidates. | ||
* \return The predicted normalized score. | ||
*/ | ||
virtual std::vector<double> Predict(const TuneContext& tune_context, | ||
const Array<MeasureCandidate>& candidates) = 0; | ||
|
||
static constexpr const char* _type_key = "meta_schedule.CostModel"; | ||
TVM_DECLARE_BASE_OBJECT_INFO(CostModelNode, Object); | ||
}; | ||
|
||
/*! \brief The cost model with customized methods on the python-side. */ | ||
class PyCostModelNode : public CostModelNode { | ||
public: | ||
/*! | ||
* \brief Load the cost model from given file location. | ||
* \param path The file path. | ||
*/ | ||
using FLoad = runtime::TypedPackedFunc<void(String)>; | ||
/*! | ||
* \brief Save the cost model to given file location. | ||
* \param path The file path. | ||
*/ | ||
using FSave = runtime::TypedPackedFunc<void(String)>; | ||
/*! | ||
* \brief Update the cost model given running results. | ||
* \param tune_context The tuning context. | ||
* \param candidates The measure candidates. | ||
* \param results The running results of the measure candidates. | ||
* \return Whether cost model was updated successfully. | ||
*/ | ||
using FUpdate = runtime::TypedPackedFunc<void(const TuneContext&, const Array<MeasureCandidate>&, | ||
const Array<RunnerResult>&)>; | ||
/*! | ||
* \brief Predict the running results of given measure candidates. | ||
* \param tune_context The tuning context. | ||
* \param candidates The measure candidates. | ||
* \param p_addr The address to save the the estimated running results. | ||
*/ | ||
using FPredict = runtime::TypedPackedFunc<void(const TuneContext&, const Array<MeasureCandidate>&, | ||
void* p_addr)>; | ||
/*! | ||
* \brief Get the cost model as string with name. | ||
* \return The string representation of the cost model. | ||
*/ | ||
using FAsString = runtime::TypedPackedFunc<String()>; | ||
|
||
/*! \brief The packed function to the `Load` function. */ | ||
FLoad f_load; | ||
/*! \brief The packed function to the `Save` function. */ | ||
FSave f_save; | ||
/*! \brief The packed function to the `Update` function. */ | ||
FUpdate f_update; | ||
/*! \brief The packed function to the `Predict` function. */ | ||
FPredict f_predict; | ||
/*! \brief The packed function to the `AsString` function. */ | ||
FAsString f_as_string; | ||
|
||
void VisitAttrs(tvm::AttrVisitor* v) { | ||
// `f_load` is not visited | ||
// `f_save` is not visited | ||
// `f_update` is not visited | ||
// `f_predict` is not visited | ||
// `f_as_string` is not visited | ||
} | ||
|
||
void Load(const String& path) { | ||
ICHECK(f_load != nullptr) << "PyCostModel's Load method not implemented!"; | ||
f_load(path); | ||
} | ||
|
||
void Save(const String& path) { | ||
ICHECK(f_save != nullptr) << "PyCostModel's Save method not implemented!"; | ||
f_save(path); | ||
} | ||
void Update(const TuneContext& tune_context, const Array<MeasureCandidate>& candidates, | ||
const Array<RunnerResult>& results) { | ||
ICHECK(f_update != nullptr) << "PyCostModel's Update method not implemented!"; | ||
f_update(tune_context, candidates, results); | ||
} | ||
|
||
std::vector<double> Predict(const TuneContext& tune_context, | ||
const Array<MeasureCandidate>& candidates) { | ||
ICHECK(f_predict != nullptr) << "PyCostModel's Predict method not implemented!"; | ||
std::vector<double> result(candidates.size(), 0.0); | ||
f_predict(tune_context, candidates, result.data()); | ||
return result; | ||
} | ||
|
||
static constexpr const char* _type_key = "meta_schedule.PyCostModel"; | ||
TVM_DECLARE_FINAL_OBJECT_INFO(PyCostModelNode, CostModelNode); | ||
}; | ||
|
||
/*! | ||
* \brief Managed reference to CostModelNode | ||
* \sa CostModelNode | ||
*/ | ||
class CostModel : public runtime::ObjectRef { | ||
public: | ||
/*! | ||
* \brief Create a feature extractor with customized methods on the python-side. | ||
* \param f_load The packed function of `Load`. | ||
* \param f_save The packed function of `Save`. | ||
* \param f_update The packed function of `Update`. | ||
* \param f_predict The packed function of `Predict`. | ||
* \param f_as_string The packed function of `AsString`. | ||
* \return The feature extractor created. | ||
*/ | ||
TVM_DLL static CostModel PyCostModel(PyCostModelNode::FLoad f_load, // | ||
PyCostModelNode::FSave f_save, // | ||
PyCostModelNode::FUpdate f_update, // | ||
PyCostModelNode::FPredict f_predict, // | ||
PyCostModelNode::FAsString f_as_string); | ||
TVM_DEFINE_MUTABLE_OBJECT_REF_METHODS(CostModel, ObjectRef, CostModelNode); | ||
}; | ||
|
||
} // namespace meta_schedule | ||
} // namespace tvm | ||
|
||
#endif // TVM_META_SCHEDULE_COST_MODEL_H_ |
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.