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.
[MetaSchedule] Refactor testing workloads (apache#10497)
- Loading branch information
Showing
15 changed files
with
683 additions
and
439 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 was deleted.
Oops, something went wrong.
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
140 changes: 140 additions & 0 deletions
140
python/tvm/meta_schedule/testing/custom_builder_runner.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,140 @@ | ||
# 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. | ||
"""Customized builder and runner methods""" | ||
# pylint: disable=import-outside-toplevel | ||
|
||
from typing import TYPE_CHECKING, Dict, List | ||
|
||
if TYPE_CHECKING: | ||
from tvm.ir import IRModule | ||
from tvm.meta_schedule.runner import EvaluatorConfig | ||
from tvm.runtime import Device, Module, NDArray | ||
from tvm.target import Target | ||
|
||
|
||
def build_relay( | ||
mod: "IRModule", | ||
target: "Target", | ||
params: Dict[str, "NDArray"], | ||
) -> "Module": | ||
"""Build a Relay IRModule | ||
Parameters | ||
---------- | ||
mod : IRModule | ||
The Relay IRModule to build. | ||
target : Target | ||
The target to build the module for. | ||
params : Dict[str, NDArray] | ||
The parameter dict to build the module with. | ||
Returns | ||
------- | ||
mod : runtime.Module | ||
The built module. | ||
""" | ||
from tvm.relay.build_module import _build_module_no_factory as relay_build | ||
from tvm.runtime import Module | ||
|
||
result = relay_build(mod, target=target, target_host=None, params=params) | ||
assert isinstance(result, Module) | ||
return result | ||
|
||
|
||
def build_relay_with_tensorrt( | ||
mod: "IRModule", | ||
target: "Target", | ||
params: Dict[str, "NDArray"], | ||
) -> "Module": | ||
"""Build a Relay IRModule with TensorRT BYOC | ||
Parameters | ||
---------- | ||
mod : IRModule | ||
The Relay IRModule to build. | ||
target : Target | ||
The target to build the module for. | ||
params : Dict[str, NDArray] | ||
The parameter dict to build the module with. | ||
Returns | ||
------- | ||
mod : runtime.Module | ||
The built module. | ||
""" | ||
from tvm.ir.transform import PassContext | ||
from tvm.relay.build_module import _build_module_no_factory as relay_build | ||
from tvm.relay.op.contrib import tensorrt | ||
from tvm.runtime import Module | ||
|
||
mod, config = tensorrt.partition_for_tensorrt(mod, params) | ||
with PassContext( | ||
opt_level=3, | ||
config={"relay.ext.tensorrt.options": config}, | ||
): | ||
result = relay_build(mod, target=target, target_host=None, params=params) | ||
assert isinstance(result, Module) | ||
return result | ||
|
||
|
||
def run_with_graph_executor( | ||
rt_mod: "Module", | ||
device: "Device", | ||
evaluator_config: "EvaluatorConfig", | ||
repeated_args: List["NDArray"], | ||
) -> List[float]: | ||
"""Run a Relay module with GraphExecutor | ||
Parameters | ||
---------- | ||
rt_mod : Module | ||
The Relay module to run. | ||
device : Device | ||
The device to run the module on. | ||
evaluator_config : EvaluatorConfig | ||
The evaluator configuration to run the module with. | ||
repeated_args : List[NDArray] | ||
The list of repeated arguments to run the module with. | ||
Returns | ||
------- | ||
results : List[float] | ||
The list of results. | ||
""" | ||
import itertools | ||
|
||
from tvm.contrib.graph_executor import GraphModule | ||
|
||
graph_mod = GraphModule(rt_mod["default"](device)) | ||
evaluator = graph_mod.module.time_evaluator( | ||
func_name="run", | ||
dev=device, | ||
number=evaluator_config.number, | ||
repeat=evaluator_config.repeat, | ||
min_repeat_ms=evaluator_config.min_repeat_ms, | ||
f_preproc="cache_flush_cpu_non_first_arg" | ||
if evaluator_config.enable_cpu_cache_flush | ||
else "", | ||
) | ||
repeated_costs = [] | ||
for args in repeated_args: | ||
profile_result = evaluator(*args) | ||
repeated_costs.append(profile_result.results) | ||
costs = [float(cost) for cost in itertools.chain.from_iterable(repeated_costs)] | ||
return costs |
Oops, something went wrong.