# Copyright (c) ONNX Project Contributors # # SPDX-License-Identifier: Apache-2.0 from __future__ import annotations import numpy as np import onnx from onnx.backend.test.case.base import Base from onnx.backend.test.case.node import expect class Less(Base): @staticmethod def export() -> None: node = onnx.helper.make_node( "Less", inputs=["x", "y"], outputs=["less"], ) x = np.random.randn(3, 4, 5).astype(np.float32) y = np.random.randn(3, 4, 5).astype(np.float32) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less") x = np.random.randn(3, 4, 5).astype(np.int8) y = np.random.randn(3, 4, 5).astype(np.int8) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_int8") x = np.random.randn(3, 4, 5).astype(np.int16) y = np.random.randn(3, 4, 5).astype(np.int16) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_int16") x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_uint8") x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint16) y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint16) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_uint16") x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint32) y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint32) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_uint32") x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint64) y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint64) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_uint64") @staticmethod def export_less_broadcast() -> None: node = onnx.helper.make_node( "Less", inputs=["x", "y"], outputs=["less"], ) x = np.random.randn(3, 4, 5).astype(np.float32) y = np.random.randn(5).astype(np.float32) z = np.less(x, y) expect(node, inputs=[x, y], outputs=[z], name="test_less_bcast")