3a2c66702c
Tests on CPU (scheduled) / check-skip (push) Has been cancelled
Tests on CPU (scheduled) / pre-tests (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float32) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float64) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / coverage (push) Has been cancelled
Tests on CPU (scheduled) / typing (push) Has been cancelled
Tests on CPU (scheduled) / tutorials (push) Has been cancelled
Tests on CPU (scheduled) / docs (push) Has been cancelled
Lint / TOML Format (push) Has been cancelled
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
# LICENSE HEADER MANAGED BY add-license-header
|
|
#
|
|
# Copyright 2018 Kornia Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
import pytest
|
|
import torch
|
|
|
|
import kornia
|
|
|
|
from testing.base import BaseTester
|
|
|
|
|
|
class TestLambdaModule(BaseTester):
|
|
def add_2_layer(self, tensor):
|
|
return tensor + 2
|
|
|
|
def add_x_mul_y(self, tensor, x, y=2):
|
|
return torch.mul(tensor + x, y)
|
|
|
|
def test_smoke(self, device, dtype):
|
|
B, C, H, W = 1, 3, 4, 5
|
|
img = torch.rand(B, C, H, W, device=device, dtype=dtype)
|
|
func = self.add_2_layer
|
|
if not callable(func):
|
|
raise TypeError(f"Argument lambd should be callable, got {type(func).__name__!r}")
|
|
assert isinstance(kornia.contrib.Lambda(func)(img), torch.Tensor)
|
|
|
|
@pytest.mark.parametrize("x", [3, 2, 5])
|
|
def test_lambda_with_arguments(self, x, device, dtype):
|
|
B, C, H, W = 2, 3, 5, 7
|
|
img = torch.rand(B, C, H, W, device=device, dtype=dtype)
|
|
func = self.add_x_mul_y
|
|
lambda_module = kornia.contrib.Lambda(func)
|
|
out = lambda_module(img, x)
|
|
assert isinstance(out, torch.Tensor)
|
|
|
|
@pytest.mark.parametrize("shape", [(1, 3, 2, 3), (2, 3, 5, 7)])
|
|
def test_lambda(self, shape, device, dtype):
|
|
B, C, H, W = shape
|
|
img = torch.rand(B, C, H, W, device=device, dtype=dtype)
|
|
func = kornia.color.bgr_to_grayscale
|
|
lambda_module = kornia.contrib.Lambda(func)
|
|
out = lambda_module(img)
|
|
assert isinstance(out, torch.Tensor)
|
|
|
|
def test_gradcheck(self, device):
|
|
B, C, H, W = 1, 3, 4, 5
|
|
img = torch.rand(B, C, H, W, device=device, dtype=torch.float64, requires_grad=True)
|
|
func = kornia.color.bgr_to_grayscale
|
|
self.gradcheck(kornia.contrib.Lambda(func), (img,))
|