From 1860c4a6979353dbb72e4c7f3910932daa2de22f Mon Sep 17 00:00:00 2001 From: liuliang Date: Fri, 31 Jul 2020 13:15:29 +0800 Subject: [PATCH 1/2] Fix alignment of note --- python/tvm/auto_scheduler/measure.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/tvm/auto_scheduler/measure.py b/python/tvm/auto_scheduler/measure.py index 03ad23ef6a62..13a61c83fb02 100644 --- a/python/tvm/auto_scheduler/measure.py +++ b/python/tvm/auto_scheduler/measure.py @@ -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 From 00423d8f534e4fa0a10e2b09efb3d9117abbcddc Mon Sep 17 00:00:00 2001 From: Lianmin Zheng Date: Fri, 31 Jul 2020 13:31:49 -0700 Subject: [PATCH 2/2] trigger CI --- python/tvm/auto_scheduler/measure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tvm/auto_scheduler/measure.py b/python/tvm/auto_scheduler/measure.py index 13a61c83fb02..4d626f799462 100644 --- a/python/tvm/auto_scheduler/measure.py +++ b/python/tvm/auto_scheduler/measure.py @@ -359,7 +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 - COMPILE_HOST = 2 # Errors happen when compiling code on host (e.g. tvm.build) + 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