Use manylinux2014 instead of manylinux_2_17 as a platform tag (#15215)

* Use manylinux2014 instead of manylinux_2_17 as a platform tag

* Test
This commit is contained in:
Ilya Lavrenov 2023-04-26 12:08:51 +04:00 committed by GitHub
parent 6e6c469e69
commit 72877d4b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -165,6 +165,7 @@ def swish(
return _get_node_factory_opset4().create("Swish", as_nodes(data, beta), {})
@nameable_op
def acosh(node: NodeInput, name: Optional[str] = None) -> Node:
"""Apply hyperbolic inverse cosine function on the input node element-wise.
@ -176,6 +177,7 @@ def acosh(node: NodeInput, name: Optional[str] = None) -> Node:
return _get_node_factory_opset4().create("Acosh", as_nodes(node))
@nameable_op
def asinh(node: NodeInput, name: Optional[str] = None) -> Node:
"""Apply hyperbolic inverse sinus function on the input node element-wise.
@ -187,6 +189,7 @@ def asinh(node: NodeInput, name: Optional[str] = None) -> Node:
return _get_node_factory_opset4().create("Asinh", as_nodes(node))
@nameable_op
def atanh(node: NodeInput, name: Optional[str] = None) -> Node:
"""Apply hyperbolic inverse tangent function on the input node element-wise.

View File

@ -109,7 +109,18 @@ elseif(LINUX)
set(PLATFORM_TAG "linux_${_arch}")
else()
string(REPLACE "." "_" _ov_glibc_version "${OV_GLIBC_VERSION}")
set(PLATFORM_TAG "manylinux_${_ov_glibc_version}_${_arch}")
set(manylinux "manylinux_${_ov_glibc_version}")
# convert to well-known formats according to PEP 600
if(manylinux STREQUAL "manylinux_2_5")
set(manylinux "manylinux1")
elseif(manylinux STREQUAL "manylinux_2_12")
set(manylinux "manylinux2010")
elseif(manylinux STREQUAL "manylinux_2_17")
set(manylinux "manylinux2014")
endif()
set(PLATFORM_TAG "${manylinux}_${_arch}")
endif()
endif()