forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Topi] Cortex-M DSP support (apache#9233)
Co-authored-by: Sergey Smirnov <Sergey.Smirnov@mir.dev> Co-authored-by: Ekaterina Bern <Ekaterina.Bern@mir.dev> Co-authored-by: Mikhail Trubnikov <Mikhail.Trubnikov@mir.dev> Co-authored-by: German Tretiakov <german.tretiakov@mir.dev> Co-authored-by: Ilya Gozman <Ilya.Gozman@mir.dev> Co-authored-by: Alexey.Yazev <Alexey.Yazev@mir.dev> Co-authored-by: Ilya Gozman <92577591+ilyag-grovety@users.noreply.github.com>
- Loading branch information
Showing
26 changed files
with
1,387 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# pylint: disable=invalid-name, unused-variable, no-else-return, unused-argument, import-outside-toplevel | ||
"""Conv1D schedule for ARM CPU""" | ||
from __future__ import absolute_import as _abs | ||
|
||
from tvm import autotvm | ||
|
||
from .mprofile.dsp.conv1d import ( | ||
conv1d_nwc_dsp_compute, | ||
conv1d_nwc_dsp_schedule, | ||
) | ||
|
||
|
||
@autotvm.register_topi_compute("conv1d_nwc_dsp.arm_cpu") | ||
def conv1d_nwc_dsp(cfg, data, kernel, strides, padding, dilation, out_dtype): | ||
"""Compute conv1d with v7e-m DSP instructions.""" | ||
return conv1d_nwc_dsp_compute(cfg, data, kernel, strides, padding, dilation, out_dtype) | ||
|
||
|
||
@autotvm.register_topi_schedule("conv1d_nwc_dsp.arm_cpu") | ||
def schedule_conv1d_nwc_dsp(cfg, outs): | ||
return conv1d_nwc_dsp_schedule(cfg, outs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.