14 lines
405 B
Python
14 lines
405 B
Python
_base_ = ['../_base_/base_static.py', '../../_base_/backends/tvm.py']
|
|
|
|
onnx_config = dict(input_shape=[1344, 800])
|
|
backend_config = dict(model_inputs=[
|
|
dict(
|
|
use_vm=True,
|
|
shape=dict(input=[1, 3, 800, 1344]),
|
|
dtype=dict(input='float32'),
|
|
tuner=dict(
|
|
type='AutoScheduleTuner',
|
|
log_file='tvm_tune_log.log',
|
|
num_measure_trials=2000))
|
|
])
|