-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Unity] Relax op: arithmetic, comparison
This PR is about the high-level tensor computation operators in Relax. This PR includes the unary, binary and ternary arithmetic and comparison operators. Co-authored-by: Siyuan Feng <Hzfengsy@sjtu.edu.cn> Co-authored-by: Chaofan Lin <1713833595@qq.com>
- Loading branch information
1 parent
4ee1bde
commit d57d0f8
Showing
19 changed files
with
2,027 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# 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=redefined-builtin, invalid-name | ||
"""Relax ternary arithmetic operators.""" | ||
from . import _ffi_api | ||
from ..expr import Expr | ||
|
||
|
||
def ewise_fma(x1: Expr, x2: Expr, x3: Expr) -> Expr: | ||
"""Elementwise fused multiply-add operator | ||
Returns elementwise result of :math:`x1 * x2 + x3` | ||
Parameters | ||
---------- | ||
x1 : relax.Expr | ||
The left hand operand of the multiplication | ||
x2 : relax.Expr | ||
The right hand operand of the multiplication | ||
x3 : relax.Expr | ||
The operand of the addition | ||
Returns | ||
------- | ||
result : relax.Expr | ||
The computed result. | ||
""" | ||
return _ffi_api.ewise_fma(x1, x2, x3) # type: ignore |
Oops, something went wrong.