Skip to content

Commit

Permalink
[AutoScheduler] Fix alignment of note (apache#6181)
Browse files Browse the repository at this point in the history
* Fix alignment of note

* trigger CI

Co-authored-by: Lianmin Zheng <lianminzheng@gmail.com>
  • Loading branch information
2 people authored and Trevor Morris committed Aug 26, 2020
1 parent b0d71e4 commit c073f1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/tvm/auto_scheduler/measure.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,7 @@ class MeasureErrorNo(object):
""" Error type for MeasureResult. """
NO_ERROR = 0 # No error
INSTANTIATION_ERROR = 1 # Errors happen when apply transform steps from init state
# Errors happen when compiling code on host (e.g. tvm.build)
COMPILE_HOST = 2
COMPILE_HOST = 2 # Errors happen when compiling code on host (e.g., tvm.build)
COMPILE_DEVICE = 3 # Errors happen when compiling code on device
# (e.g. OpenCL JIT on the device)
RUNTIME_DEVICE = 4 # Errors happen when run program on device
Expand Down

0 comments on commit c073f1b

Please sign in to comment.