* [PT FE]: support PReLU * Update tests/layer_tests/pytorch_tests/test_prelu.py * Apply suggestions from code review Co-authored-by: Piotr Krzemiński <piotrkrzeminski1234@gmail.com> --------- Co-authored-by: Piotr Krzemiński <piotrkrzeminski1234@gmail.com>
35 lines
1022 B
Python
35 lines
1022 B
Python
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import pytest
|
|
|
|
from pytorch_layer_test_class import PytorchLayerTest
|
|
|
|
|
|
class TestPRelu(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):
|
|
import torch
|
|
import torch.nn.functional as F
|
|
|
|
class aten_prelu(torch.nn.Module):
|
|
def __init__(self, alpha):
|
|
super(aten_prelu, self).__init__()
|
|
self.alpha = torch.Tensor([alpha])
|
|
|
|
def forward(self, x):
|
|
return x, F.prelu(x, self.alpha)
|
|
|
|
ref_net = None
|
|
|
|
return aten_prelu(alpha), ref_net, "aten::prelu"
|
|
|
|
@pytest.mark.parametrize("alpha", [0.01, 1.01, -0.01])
|
|
@pytest.mark.nightly
|
|
@pytest.mark.precommit
|
|
def test_prelu(self, alpha, ie_device, precision, ir_version):
|
|
self._test(*self.create_model(alpha), ie_device, precision, ir_version)
|