-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathtest_leaky_relu.py
38 lines (28 loc) · 1.32 KB
/
test_leaky_relu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright (C) 2018-2025 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
import pytest
from pytorch_layer_test_class import PytorchLayerTest, skip_if_export
class TestLeakyRelu(PytorchLayerTest):
def _prepare_input(self):
import numpy as np
return (np.random.randn(1, 3, 224, 224).astype(np.float32),)
def create_model(self, alpha, inplace):
import torch
import torch.nn.functional as F
class aten_leaky_relu(torch.nn.Module):
def __init__(self, alpha, inplace):
super(aten_leaky_relu, self).__init__()
self.alpha = alpha
self.inplace = inplace
def forward(self, x):
return x, F.leaky_relu(x, self.alpha, inplace=self.inplace)
ref_net = None
return aten_leaky_relu(alpha, inplace), ref_net, "aten::leaky_relu" if not inplace else "aten::leaky_relu_"
@pytest.mark.parametrize("alpha", [0.01, 1.01, -0.01])
@pytest.mark.parametrize("inplace", [skip_if_export(True), False])
@pytest.mark.nightly
@pytest.mark.precommit
@pytest.mark.precommit_torch_export
@pytest.mark.precommit_fx_backend
def test_leaky_relu(self, alpha, inplace, ie_device, precision, ir_version):
self._test(*self.create_model(alpha, inplace), ie_device, precision, ir_version)