Implement the core of libtuning, our new tuning tool infrastructure. It leverages components from raspberrypi's ctt that could be reused for tuning tools for other platforms. The core components include: - The Image class - libtuning (entry point and other core functions) - macbeth-related tools, including the macbeth reference image - utils Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13 lines
337 B
Python
13 lines
337 B
Python
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (C) 2022, Paul Elder <paul.elder@ideasonboard.com>
|
|
|
|
from libtuning.utils import *
|
|
from libtuning.libtuning import *
|
|
|
|
from libtuning.image import *
|
|
from libtuning.macbeth import *
|
|
|
|
from libtuning.average import *
|
|
from libtuning.gradient import *
|
|
from libtuning.smoothing import *
|