5cbd3f29e3
Fuzz / Run fuzz harnesses (${{ github.event_name == 'schedule' && 'nightly' || 'smoke' }}) (push) Has been cancelled
Create Releases / call-mac (push) Has been cancelled
Create Releases / call-linux (push) Has been cancelled
Create Releases / call-sdist (push) Has been cancelled
Create Releases / call-win (push) Has been cancelled
Create Releases / call-pyodide (push) Has been cancelled
Windows_No_Exception_CI / build (x64, 3.10) (push) Has been cancelled
Check URLs / build (push) Has been cancelled
Create Releases / Attest CI build artifacts (push) Has been cancelled
Create Releases / Check for Publish release build to pypi (push) Has been cancelled
Create Releases / Check for Publish preview build to test.pypi-weekly (push) Has been cancelled
Create Releases / Publish preview build to test.pypi-weekly (push) Has been cancelled
Create Releases / Check for Publish release build to test.pypi (rc-candidates) (push) Has been cancelled
Create Releases / Publish release build to test.pypi (push) Has been cancelled
Create Releases / Check for Publish preview build to pypi-weekly (push) Has been cancelled
Create Releases / Publish preview build to pypi-weekly (push) Has been cancelled
Create Releases / Publish release build to pypi (push) Has been cancelled
Create Releases / test source distribution (push) Has been cancelled
clang-tidy / clang-tidy (push) Has been cancelled
Lint / Validate SBOM (push) Has been cancelled
Lint / Enforce style (push) Has been cancelled
CI / Test windows-2022, 3.14, External, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test windows-latest, 3.10, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test windows-latest, 3.14, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test windows-latest, 3.14t, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.14, Internal, debug=1, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.14, External, debug=0, unity_build=1, onnx_ml=1, autogen=1 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.14, External, debug=0, unity_build=0, onnx_ml=0, autogen=0 (push) Has been cancelled
CI / Test macos-latest, 3.10, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test macos-latest, 3.14, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test macos-latest, 3.14t, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.14, External, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.10, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.14, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
CI / Test ubuntu-24.04, 3.14t, Internal, debug=0, unity_build=0, onnx_ml=1, autogen=0 (push) Has been cancelled
Pixi CI / Install and lint (ubuntu-24.04-arm) (push) Has been cancelled
Pixi CI / Install and lint (windows-2022) (push) Has been cancelled
Pixi CI / Xcode generator build (push) Has been cancelled
Pixi CI / Install and test (macos-latest, default) (push) Has been cancelled
Pixi CI / Install and test (ubuntu-24.04-arm, default) (push) Has been cancelled
Pixi CI / Install and test (ubuntu-latest, default) (push) Has been cancelled
Pixi CI / Install and test (windows-2022, default) (push) Has been cancelled
Pixi CI / Install and test (macos-latest, oldies) (push) Has been cancelled
Pixi CI / Install and test (ubuntu-24.04-arm, oldies) (push) Has been cancelled
Pixi CI / Install and test (ubuntu-latest, oldies) (push) Has been cancelled
Pixi CI / Install and test (windows-2022, oldies) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (cpp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
Generate and publish ONNX docs / build (push) Has been cancelled
Generate and publish ONNX docs / deploy (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
325 lines
11 KiB
Python
325 lines
11 KiB
Python
# Copyright (c) ONNX Project Contributors
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
from __future__ import annotations
|
|
|
|
import itertools
|
|
|
|
import numpy as np
|
|
|
|
import onnx
|
|
from onnx import TensorProto
|
|
from onnx.backend.test.case.base import Base
|
|
from onnx.backend.test.case.node import expect
|
|
from onnx.helper import make_tensor, tensor_dtype_to_np_dtype
|
|
|
|
F8_TYPES = frozenset({"FLOAT8E4M3FN", "FLOAT8E4M3FNUZ", "FLOAT8E5M2", "FLOAT8E5M2FNUZ"})
|
|
FOUR_BIT_TYPES = frozenset({"UINT4", "INT4", "FLOAT4E2M1"})
|
|
TWO_BIT_TYPES = frozenset({"UINT2", "INT2"})
|
|
|
|
|
|
class CastLike(Base):
|
|
@staticmethod
|
|
def export() -> None:
|
|
test_cases = [
|
|
("FLOAT", "FLOAT16"),
|
|
("FLOAT", "DOUBLE"),
|
|
("FLOAT16", "FLOAT"),
|
|
("FLOAT16", "DOUBLE"),
|
|
("DOUBLE", "FLOAT"),
|
|
("DOUBLE", "FLOAT16"),
|
|
("FLOAT", "BFLOAT16"),
|
|
("BFLOAT16", "FLOAT"),
|
|
("FLOAT", "FLOAT8E4M3FN"),
|
|
("FLOAT16", "FLOAT8E4M3FN"),
|
|
("FLOAT", "FLOAT8E4M3FNUZ"),
|
|
("FLOAT16", "FLOAT8E4M3FNUZ"),
|
|
("FLOAT8E4M3FN", "FLOAT"),
|
|
("FLOAT8E4M3FN", "FLOAT16"),
|
|
("FLOAT8E4M3FNUZ", "FLOAT"),
|
|
("FLOAT8E4M3FNUZ", "FLOAT16"),
|
|
("FLOAT", "FLOAT8E5M2"),
|
|
("FLOAT16", "FLOAT8E5M2"),
|
|
("FLOAT", "FLOAT8E5M2FNUZ"),
|
|
("FLOAT16", "FLOAT8E5M2FNUZ"),
|
|
("FLOAT8E5M2", "FLOAT"),
|
|
("FLOAT8E5M2", "FLOAT16"),
|
|
("FLOAT8E5M2FNUZ", "FLOAT"),
|
|
("FLOAT8E5M2FNUZ", "FLOAT16"),
|
|
("FLOAT", "UINT4"),
|
|
("FLOAT16", "UINT4"),
|
|
("FLOAT", "INT4"),
|
|
("FLOAT16", "INT4"),
|
|
("UINT4", "FLOAT"),
|
|
("UINT4", "FLOAT16"),
|
|
("UINT4", "UINT8"),
|
|
("INT4", "FLOAT"),
|
|
("INT4", "FLOAT16"),
|
|
("INT4", "INT8"),
|
|
("FLOAT4E2M1", "FLOAT"),
|
|
("FLOAT4E2M1", "FLOAT16"),
|
|
("FLOAT", "FLOAT4E2M1"),
|
|
("FLOAT16", "FLOAT4E2M1"),
|
|
("FLOAT", "UINT2"),
|
|
("FLOAT16", "UINT2"),
|
|
("FLOAT", "INT2"),
|
|
("FLOAT16", "INT2"),
|
|
("UINT2", "FLOAT"),
|
|
("UINT2", "FLOAT16"),
|
|
("UINT2", "UINT8"),
|
|
("INT2", "FLOAT"),
|
|
("INT2", "FLOAT16"),
|
|
("INT2", "INT8"),
|
|
]
|
|
|
|
f8_types = {"FLOAT8E4M3FN", "FLOAT8E4M3FNUZ", "FLOAT8E5M2", "FLOAT8E5M2FNUZ"}
|
|
|
|
for from_type, to_type in test_cases:
|
|
if from_type == to_type:
|
|
# Skip cases where from_type and to_type are the same
|
|
continue
|
|
from_dtype = getattr(TensorProto, from_type)
|
|
to_dtype = getattr(TensorProto, to_type)
|
|
from_np_dtype = tensor_dtype_to_np_dtype(from_dtype)
|
|
to_np_dtype = tensor_dtype_to_np_dtype(to_dtype)
|
|
|
|
if from_type == "BFLOAT16" or to_type == "BFLOAT16":
|
|
np_fp32 = np.array(
|
|
[
|
|
"0.47892547",
|
|
"0.48033667",
|
|
"0.49968487",
|
|
"0.81910545",
|
|
"0.47031248",
|
|
"0.816468",
|
|
"0.21087195",
|
|
"0.7229038",
|
|
"NaN",
|
|
"INF",
|
|
"+INF",
|
|
"-INF",
|
|
],
|
|
dtype=np.float32,
|
|
)
|
|
input_shape = (3, 4)
|
|
|
|
elif from_type in f8_types or to_type in f8_types:
|
|
np_fp32 = np.array(
|
|
[
|
|
"0.47892547",
|
|
"0.48033667",
|
|
"0.49968487",
|
|
"0.81910545",
|
|
"0.47031248",
|
|
"0.7229038",
|
|
"1000000",
|
|
"1e-7",
|
|
"NaN",
|
|
"INF",
|
|
"+INF",
|
|
"-INF",
|
|
"-0.0000001",
|
|
"0.0000001",
|
|
"-1000000",
|
|
],
|
|
dtype=np.float32,
|
|
)
|
|
input_shape = (3, 5)
|
|
elif from_type in ("UINT4", "INT4") or to_type in ("UINT4", "INT4"):
|
|
np_fp32 = np.arange(-9, 16).astype(np.float32)
|
|
input_shape = (5, 5)
|
|
elif from_type in ("UINT2", "INT2") or to_type in ("UINT2", "INT2"):
|
|
np_fp32 = np.arange(-3, 4).astype(np.float32)
|
|
input_shape = (7, 1)
|
|
elif from_type == "FLOAT4E2M1" or to_type == "FLOAT4E2M1":
|
|
np_fp32 = np.array(
|
|
[
|
|
"0.48",
|
|
"0.25",
|
|
"1.05",
|
|
"-3.5",
|
|
"-8",
|
|
"9",
|
|
"1000000",
|
|
"1e-7",
|
|
"NaN",
|
|
"INF",
|
|
"+INF",
|
|
"-INF",
|
|
"-4",
|
|
"0.01",
|
|
"-0.0",
|
|
],
|
|
dtype=np.float32,
|
|
)
|
|
input_shape = (3, 5)
|
|
|
|
else:
|
|
np_fp32 = np.array(
|
|
[
|
|
"0.47892547",
|
|
"0.48033667",
|
|
"0.49968487",
|
|
"0.81910545",
|
|
"0.47031248",
|
|
"0.816468",
|
|
"0.21087195",
|
|
"0.7229038",
|
|
"NaN",
|
|
"INF",
|
|
"+INF",
|
|
"-INF",
|
|
],
|
|
dtype=np.float32,
|
|
).reshape([3, 4])
|
|
input_shape = (3, 4)
|
|
|
|
if from_type in F8_TYPES:
|
|
np_from = onnx.numpy_helper.saturate_cast(np_fp32, from_np_dtype)
|
|
input = make_tensor(
|
|
"input",
|
|
from_dtype,
|
|
input_shape,
|
|
vals=np_from,
|
|
raw=True,
|
|
)
|
|
elif from_type in FOUR_BIT_TYPES:
|
|
np_from = np_fp32.astype(from_np_dtype)
|
|
packed = onnx.numpy_helper._pack_4bitx2(np_from)
|
|
# No byteswap needed on big-endian machines as _pack_4bitx2()
|
|
# returns a numpy array with uint8 datatype.
|
|
input = make_tensor(
|
|
"input", from_dtype, input_shape, vals=packed.tobytes(), raw=True
|
|
)
|
|
elif from_type in TWO_BIT_TYPES:
|
|
np_from = np_fp32.astype(from_np_dtype)
|
|
packed = onnx.numpy_helper._pack_2bitx4(np_from)
|
|
# No byteswap needed on big-endian machines as _pack_2bitx4()
|
|
# returns a numpy array with uint8 datatype.
|
|
input = make_tensor(
|
|
"input", from_dtype, input_shape, vals=packed.tobytes(), raw=True
|
|
)
|
|
else:
|
|
np_from = np_fp32.astype(from_np_dtype)
|
|
input = make_tensor(
|
|
"input", from_dtype, input_shape, vals=np_from, raw=True
|
|
)
|
|
|
|
if to_type in F8_TYPES:
|
|
output = make_tensor(
|
|
"output",
|
|
to_dtype,
|
|
input_shape,
|
|
vals=onnx.numpy_helper.saturate_cast(np_from, to_np_dtype),
|
|
raw=True,
|
|
)
|
|
elif to_type in FOUR_BIT_TYPES:
|
|
packed = onnx.numpy_helper._pack_4bitx2(np_from.astype(to_np_dtype))
|
|
# No byteswap needed on big-endian machines as _pack_4bitx2()
|
|
# returns a numpy array with uint8 datatype.
|
|
output = make_tensor(
|
|
"output", to_dtype, input_shape, vals=packed.tobytes(), raw=True
|
|
)
|
|
elif to_type in TWO_BIT_TYPES:
|
|
packed = onnx.numpy_helper._pack_2bitx4(np_from.astype(to_np_dtype))
|
|
# No byteswap needed on big-endian machines as _pack_2bitx4()
|
|
# returns a numpy array with uint8 datatype.
|
|
output = make_tensor(
|
|
"output", to_dtype, input_shape, vals=packed.tobytes(), raw=True
|
|
)
|
|
else:
|
|
output = make_tensor(
|
|
"output",
|
|
to_dtype,
|
|
input_shape,
|
|
vals=np_from.astype(to_np_dtype),
|
|
raw=True,
|
|
)
|
|
|
|
like = make_tensor("like", to_dtype, (0,), vals=[])
|
|
|
|
node = onnx.helper.make_node(
|
|
"CastLike",
|
|
inputs=["input", "like"],
|
|
outputs=["output"],
|
|
)
|
|
|
|
expect(
|
|
node,
|
|
inputs=[input, like],
|
|
outputs=[output],
|
|
name="test_castlike_" + from_type + "_to_" + to_type,
|
|
)
|
|
|
|
@staticmethod
|
|
def export_saturate_false() -> None:
|
|
test_cases = itertools.product(
|
|
[
|
|
"FLOAT",
|
|
"FLOAT16",
|
|
],
|
|
[
|
|
"FLOAT8E4M3FN",
|
|
"FLOAT8E4M3FNUZ",
|
|
"FLOAT8E5M2",
|
|
"FLOAT8E5M2FNUZ",
|
|
],
|
|
)
|
|
input_shape = (3, 5)
|
|
for from_type, to_type in test_cases:
|
|
from_dtype = getattr(TensorProto, from_type)
|
|
to_dtype = getattr(TensorProto, to_type)
|
|
from_np_dtype = tensor_dtype_to_np_dtype(from_dtype)
|
|
to_np_dtype = tensor_dtype_to_np_dtype(to_dtype)
|
|
np_fp32 = np.array(
|
|
[
|
|
"0.47892547",
|
|
"0.48033667",
|
|
"0.49968487",
|
|
"0.81910545",
|
|
"0.47031248",
|
|
"0.7229038",
|
|
"1000000",
|
|
"1e-7",
|
|
"NaN",
|
|
"INF",
|
|
"+INF",
|
|
"-INF",
|
|
"-0.0000001",
|
|
"0.0000001",
|
|
"-1000000",
|
|
],
|
|
dtype=np.float32,
|
|
)
|
|
|
|
input = make_tensor(
|
|
"input",
|
|
from_dtype,
|
|
input_shape,
|
|
vals=np_fp32.astype(from_np_dtype),
|
|
raw=True,
|
|
)
|
|
output = make_tensor(
|
|
"output",
|
|
to_dtype,
|
|
input_shape,
|
|
vals=np_fp32.astype(from_np_dtype).astype(to_np_dtype),
|
|
raw=True,
|
|
)
|
|
|
|
like = make_tensor("like", to_dtype, (0,), vals=[])
|
|
|
|
node = onnx.helper.make_node(
|
|
"CastLike",
|
|
inputs=["input", "like"],
|
|
outputs=["output"],
|
|
saturate=0,
|
|
)
|
|
|
|
expect(
|
|
node,
|
|
inputs=[input, like],
|
|
outputs=[output],
|
|
name="test_castlike_no_saturate_" + from_type + "_to_" + to_type,
|
|
)
|