Kathryn-cat commented on code in PR #11622: URL: https://github.com/apache/tvm/pull/11622#discussion_r893972667
########## python/tvm/meta_schedule/default.py: ########## @@ -0,0 +1,327 @@ +# 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. +# pylint: disable=import-outside-toplevel +"""Pre-configured Defaults for MetaSchedule search rules""" +import logging +from os import path as osp +from typing import Callable, Dict, List, Optional, Union + +from tvm._ffi.registry import register_func +from tvm.ir import IRModule +from tvm.target import Target +from tvm.tir import PrimFunc + +from .builder import Builder, LocalBuilder +from .cost_model import CostModel, XGBModel +from .database import Database, JSONDatabase +from .feature_extractor import PerStoreFeature +from .measure_callback import MeasureCallback +from .mutator import Mutator +from .postproc import Postproc +from .runner import LocalRunner, Runner +from .schedule_rule import ScheduleRule +from .space_generator import PostOrderApply, SpaceGenerator + +logger = logging.getLogger(__name__) # pylint: disable=invalid-name + +FnSpaceGenerator = Callable[[], SpaceGenerator] +FnScheduleRule = Callable[[], List[ScheduleRule]] +FnPostproc = Callable[[], List[Postproc]] +FnMutatorProb = Callable[[], Dict[Mutator, float]] + + +class Default: Review Comment: Currently `DefaultLLVM` and `DefaultCUDA` have no inheritance relationship with `Default`, so I think it might be better to move `DefaultLLVM` and `DefaultCUDA` into `Default` as subclasses, and give them the same names for functions. Also, the name `Default` is actually a little misleading. Perhaps change it into others like `Config`? ########## python/tvm/meta_schedule/default.py: ########## @@ -0,0 +1,327 @@ +# 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. +# pylint: disable=import-outside-toplevel +"""Pre-configured Defaults for MetaSchedule search rules""" +import logging +from os import path as osp +from typing import Callable, Dict, List, Optional, Union + +from tvm._ffi.registry import register_func +from tvm.ir import IRModule +from tvm.target import Target +from tvm.tir import PrimFunc + +from .builder import Builder, LocalBuilder +from .cost_model import CostModel, XGBModel +from .database import Database, JSONDatabase +from .feature_extractor import PerStoreFeature +from .measure_callback import MeasureCallback +from .mutator import Mutator +from .postproc import Postproc +from .runner import LocalRunner, Runner +from .schedule_rule import ScheduleRule +from .space_generator import PostOrderApply, SpaceGenerator + +logger = logging.getLogger(__name__) # pylint: disable=invalid-name + +FnSpaceGenerator = Callable[[], SpaceGenerator] +FnScheduleRule = Callable[[], List[ScheduleRule]] +FnPostproc = Callable[[], List[Postproc]] +FnMutatorProb = Callable[[], Dict[Mutator, float]] + + +class Default: Review Comment: Currently `DefaultLLVM` and `DefaultCUDA` have no inheritance relationship with `Default`, so I think it might be better to move `DefaultLLVM` and `DefaultCUDA` into `Default` as subclasses, and give them the same names for functions. Also, the name `Default` is actually a little misleading. Perhaps change it into others like `Config`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
