Skip to content

Commit

Permalink
Fix with local args
Browse files Browse the repository at this point in the history
  • Loading branch information
echuraev committed Sep 20, 2021
1 parent bf4d604 commit 4c12e6e
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions python/tvm/auto_scheduler/measure.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import tempfile
import multiprocessing
import logging
import copy

import tvm._ffi
from tvm.runtime import Object, module, ndarray
Expand Down Expand Up @@ -910,18 +909,18 @@ def _timed_eval_func(
random_fill = tvm.get_global_func("tvm.contrib.random.random_fill", True)
assert random_fill, "Please make sure USE_RANDOM is ON in the config.cmake"
assert len(args) == len(build_res.args)
loc_args = copy.deepcopy(args)
loc_args = []
# pylint: disable=consider-using-enumerate
for idx in range(len(loc_args)):
if loc_args[idx] is None:
for idx in range(len(args)):
if args[idx] is None:
build_res_arg = build_res.args[idx]
empty_array = ndarray.empty(
get_const_tuple(build_res_arg.shape), build_res_arg.dtype, dev
)
random_fill(empty_array)
loc_args[idx] = empty_array
loc_args.append(empty_array)
else:
loc_args[idx] = ndarray.array(loc_args[idx], dev)
loc_args.append(ndarray.array(arg))
dev.sync()
costs = time_f(*loc_args).results
# pylint: disable=broad-except
Expand Down Expand Up @@ -1114,18 +1113,18 @@ def _rpc_run(
), "Please make sure USE_RANDOM is ON in the config.cmake on the remote devices"

assert len(args) == len(build_res.args)
loc_args = copy.deepcopy(args)
loc_args = []
# pylint: disable=consider-using-enumerate
for idx in range(len(loc_args)):
if loc_args[idx] is None:
for idx in range(len(args)):
if args[idx] is None:
build_res_arg = build_res.args[idx]
empty_array = ndarray.empty(
get_const_tuple(build_res_arg.shape), build_res_arg.dtype, dev
)
random_fill(empty_array)
loc_args[idx] = empty_array
loc_args.append(empty_array)
else:
loc_args[idx] = ndarray.array(loc_args[idx], dev)
loc_args.append(ndarray.array(args[idx], dev))
dev.sync()

# First run for check that the kernel is correct
Expand Down

0 comments on commit 4c12e6e

Please sign in to comment.