1f2fdbf6c2
* use popenpool in local_executor * move auto_tvm_common to tvm.testing * refactor * nit * remove LocalFutureNoFork * exception handling * handling two exceptions * handling error * add initiazlier
33 lines
1.4 KiB
Python
33 lines
1.4 KiB
Python
# 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=redefined-builtin, wildcard-import
|
|
"""Utility Python functions for TVM testing"""
|
|
|
|
from .utils import *
|
|
|
|
from ._ffi_api import nop, echo, device_test, run_check_signal, object_use_count
|
|
from ._ffi_api import test_wrap_callback, test_raise_error_callback, test_check_eq_callback
|
|
from ._ffi_api import ErrorTest, FrontendTestModule, identity_cpp
|
|
|
|
from .popen_pool import initializer, after_initializer, register_ffi, call_cpp_ffi
|
|
from .popen_pool import call_py_ffi, call_cpp_py_ffi, fast_summation, slow_summation
|
|
from .popen_pool import timeout_job
|
|
|
|
from . import auto_scheduler
|
|
from . import autotvm
|