[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-04 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r587996929 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -719,6 +720,45 @@ def local_builder_build(inputs, timeout, n_parallel, build_func="default", verbo

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-04 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r587975519 ## File path: python/tvm/auto_scheduler/search_task.py ## @@ -157,6 +164,149 @@ def __init__( ) +# The map stores special registered buffer for

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-04 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r587971202 ## File path: python/tvm/auto_scheduler/search_task.py ## @@ -157,6 +164,149 @@ def __init__( ) +# The map stores special registered buffer for

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-04 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r587962953 ## File path: python/tvm/auto_scheduler/search_task.py ## @@ -157,6 +164,149 @@ def __init__( ) +# The map stores special registered buffer for

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-03 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r586979630 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -719,6 +720,45 @@ def local_builder_build(inputs, timeout, n_parallel, build_func="default", verbo

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-03 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r586942876 ## File path: tests/python/unittest/test_auto_scheduler_search_task.py ## @@ -0,0 +1,211 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-03 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r586937376 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -719,6 +720,45 @@ def local_builder_build(inputs, timeout, n_parallel, build_func="default", verbo

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-03 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r586937376 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -719,6 +720,45 @@ def local_builder_build(inputs, timeout, n_parallel, build_func="default", verbo

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-03 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r586192659 ## File path: tutorials/auto_scheduler/tune_sparse_x86.py ## @@ -0,0 +1,331 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-03-02 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r586167940 ## File path: tutorials/auto_scheduler/tune_sparse_x86.py ## @@ -0,0 +1,331 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-02-05 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r570068598 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -943,18 +1047,36 @@ def _timed_rpc_run( if error_no == 0: try: -args =

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-02-04 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r570068598 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -943,18 +1047,36 @@ def _timed_rpc_run( if error_no == 0: try: -args =

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-02-03 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r569407977 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -1132,3 +1249,44 @@ def rpc_runner_run( print("") return results + + +# The map stores

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-01-28 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r566526531 ## File path: python/tvm/auto_scheduler/measure.py ## @@ -719,6 +722,87 @@ def local_builder_build(inputs, timeout, n_parallel, build_func="default", verbo

[GitHub] [tvm] jcf94 commented on a change in pull request #7313: [AutoSchedule] Sparse dense tuning support with custom sketch rule

2021-01-28 Thread GitBox
jcf94 commented on a change in pull request #7313: URL: https://github.com/apache/tvm/pull/7313#discussion_r565944345 ## File path: tutorials/auto_scheduler/tune_sparse_x86.py ## @@ -0,0 +1,331 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more