@@ -49,7 +49,7 @@ def schedule_concatenate_arm_cpu(_, outs, target):
4949 return topi .arm_cpu .schedule_concatenate (outs )
5050
5151
52- @schedule_pool .register (["arm_cpu" , "micro_dev" ])
52+ @schedule_pool .register (["arm_cpu" ])
5353def schedule_pool_arm_cpu (attrs , outs , target ):
5454 """schedule pooling ops arm cpu"""
5555 layout = attrs .layout
@@ -437,7 +437,7 @@ def schedule_bitserial_dense_arm_cpu(attrs, inputs, out_type, target):
437437 return strategy
438438
439439
440- @dense_strategy .register (["arm_cpu" , "micro_dev" ])
440+ @dense_strategy .register (["arm_cpu" ])
441441def schedule_dense_arm_cpu (attrs , inputs , out_type , target ):
442442 """dense arm cpu strategy"""
443443 strategy = _op .OpStrategy ()
@@ -446,7 +446,7 @@ def schedule_dense_arm_cpu(attrs, inputs, out_type, target):
446446 strategy .add_implementation (
447447 wrap_compute_dense (topi .nn .dense ),
448448 wrap_topi_schedule (topi .arm_cpu .schedule_dense_direct_simd ),
449- name = "dense_direct_simd.micro_dev " ,
449+ name = "dense_direct_simd" ,
450450 )
451451 else :
452452 strategy .add_implementation (
@@ -474,7 +474,7 @@ def conv1d_strategy_arm_cpu(attrs, inputs, out_type, target):
474474 strategy .add_implementation (
475475 wrap_compute_conv1d (topi .arm_cpu .conv1d_nwc_direct_simd ),
476476 wrap_topi_schedule (topi .arm_cpu .schedule_conv1d_nwc_direct_simd ),
477- name = "conv1d_direct_simd.micro_dev " ,
477+ name = "conv1d_direct_simd" ,
478478 )
479479 else :
480480 raise RuntimeError (
0 commit comments