[{"id":30759,"web_url":"https://patchwork.libcamera.org/comment/30759/","msgid":"<49ce4511-51ca-4284-98d4-1ffa0fec06d8@ideasonboard.com>","date":"2024-08-12T15:04:34","subject":"Re: [PATCH v3 13/23] libcamera: software_isp: Create algorithms","submitter":{"id":156,"url":"https://patchwork.libcamera.org/api/people/156/","name":"Dan Scally","email":"dan.scally@ideasonboard.com"},"content":"On 17/07/2024 09:54, Milan Zamazal wrote:\n> We are ready to introduce algorithms now.  First, let's create\n> algorithms.  The algorithms are not called yet, calls to them will be\n> added in followup patches.\n>\n> The maximum number of contexts is set to the same value as in hardware\n> pipelines.\n>\n> Signed-off-by: Milan Zamazal <mzamazal@redhat.com>\n> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>\n> ---\nLooks good to me: Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>\n>   src/ipa/simple/algorithms/meson.build |  4 ++++\n>   src/ipa/simple/data/uncalibrated.yaml |  1 +\n>   src/ipa/simple/meson.build            |  7 +++++--\n>   src/ipa/simple/soft_simple.cpp        | 14 ++++++++++++++\n>   4 files changed, 24 insertions(+), 2 deletions(-)\n>   create mode 100644 src/ipa/simple/algorithms/meson.build\n>\n> diff --git a/src/ipa/simple/algorithms/meson.build b/src/ipa/simple/algorithms/meson.build\n> new file mode 100644\n> index 00000000..31d26e43\n> --- /dev/null\n> +++ b/src/ipa/simple/algorithms/meson.build\n> @@ -0,0 +1,4 @@\n> +# SPDX-License-Identifier: CC0-1.0\n> +\n> +soft_simple_ipa_algorithms = files([\n> +])\n> diff --git a/src/ipa/simple/data/uncalibrated.yaml b/src/ipa/simple/data/uncalibrated.yaml\n> index ff981a1a..2cdc39a8 100644\n> --- a/src/ipa/simple/data/uncalibrated.yaml\n> +++ b/src/ipa/simple/data/uncalibrated.yaml\n> @@ -2,4 +2,5 @@\n>   %YAML 1.1\n>   ---\n>   version: 1\n> +algorithms:\n>   ...\n> diff --git a/src/ipa/simple/meson.build b/src/ipa/simple/meson.build\n> index 363251fb..7515a8d8 100644\n> --- a/src/ipa/simple/meson.build\n> +++ b/src/ipa/simple/meson.build\n> @@ -1,5 +1,8 @@\n>   # SPDX-License-Identifier: CC0-1.0\n>   \n> +subdir('algorithms')\n> +subdir('data')\n> +\n>   ipa_name = 'ipa_soft_simple'\n>   \n>   soft_simple_sources = files([\n> @@ -8,6 +11,8 @@ soft_simple_sources = files([\n>       'black_level.cpp',\n>   ])\n>   \n> +soft_simple_sources += soft_simple_ipa_algorithms\n> +\n>   mod = shared_module(ipa_name,\n>                       [soft_simple_sources, libcamera_generated_ipa_headers],\n>                       name_prefix : '',\n> @@ -25,6 +30,4 @@ if ipa_sign_module\n>                     build_by_default : true)\n>   endif\n>   \n> -subdir('data')\n> -\n>   ipa_names += ipa_name\n> diff --git a/src/ipa/simple/soft_simple.cpp b/src/ipa/simple/soft_simple.cpp\n> index 09e3c8f6..dd300387 100644\n> --- a/src/ipa/simple/soft_simple.cpp\n> +++ b/src/ipa/simple/soft_simple.cpp\n> @@ -53,12 +53,15 @@ static constexpr float kExposureOptimal = kExposureBinsCount / 2.0;\n>    * enough to prevent the exposure from wobbling around the optimal value.\n>    */\n>   static constexpr float kExposureSatisfactory = 0.2;\n> +/* Maximum number of frame contexts to be held */\n> +static constexpr uint32_t kMaxFrameContexts = 16;\n>   \n>   class IPASoftSimple : public ipa::soft::IPASoftInterface, public Module\n>   {\n>   public:\n>   \tIPASoftSimple()\n>   \t\t: params_(nullptr), stats_(nullptr), blackLevel_(BlackLevel()),\n> +\t\t  context_({ {}, {}, { kMaxFrameContexts } }),\n>   \t\t  ignoreUpdates_(0)\n>   \t{\n>   \t}\n> @@ -92,6 +95,8 @@ private:\n>   \tstatic constexpr unsigned int kGammaLookupSize = 1024;\n>   \tstd::array<uint8_t, kGammaLookupSize> gammaTable_;\n>   \tint lastBlackLevel_ = -1;\n> +\t/* Local parameter storage */\n> +\tstruct IPAContext context_;\n>   \n>   \tint32_t exposureMin_, exposureMax_;\n>   \tint32_t exposure_;\n> @@ -138,6 +143,15 @@ int IPASoftSimple::init(const IPASettings &settings,\n>   \tunsigned int version = (*data)[\"version\"].get<uint32_t>(0);\n>   \tLOG(IPASoft, Debug) << \"Tuning file version \" << version;\n>   \n> +\tif (!data->contains(\"algorithms\")) {\n> +\t\tLOG(IPASoft, Error) << \"Tuning file doesn't contain algorithms\";\n> +\t\treturn -EINVAL;\n> +\t}\n> +\n> +\tint ret = createAlgorithms(context_, (*data)[\"algorithms\"]);\n> +\tif (ret)\n> +\t\treturn ret;\n> +\n>   \tparams_ = nullptr;\n>   \tstats_ = nullptr;\n>","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 469CFBE173\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon, 12 Aug 2024 15:04:40 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 59FA4633B5;\n\tMon, 12 Aug 2024 17:04:39 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 1629B63369\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 12 Aug 2024 17:04:37 +0200 (CEST)","from [192.168.0.43]\n\t(cpc141996-chfd3-2-0-cust928.12-3.cable.virginm.net [86.13.91.161])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 96BB96B5\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 12 Aug 2024 17:03:40 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"K7NWewnl\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1723475020;\n\tbh=934VDvMqS9uLr942oFljM0gicAi+XN2Zgx+Cio+q/EI=;\n\th=Date:Subject:To:References:From:In-Reply-To:From;\n\tb=K7NWewnlZHPT+5GPPw0r6ahNz8RJRkkCZ8NwScwPeLsqMLs8ICR2R8dj0BbIw6PHM\n\tk6zP1OJPGx7013xhe2cT+9h3DfYpsdYmcvF0f7dw2k6gKi4/Ncq8BASsXogumcNHSn\n\t29+cdbNJBgB83xR19YsA5p2YBWwz0uoX1S5IKRTk=","Message-ID":"<49ce4511-51ca-4284-98d4-1ffa0fec06d8@ideasonboard.com>","Date":"Mon, 12 Aug 2024 16:04:34 +0100","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH v3 13/23] libcamera: software_isp: Create algorithms","To":"libcamera-devel@lists.libcamera.org","References":"<20240717085444.289997-1-mzamazal@redhat.com>\n\t<20240717085444.289997-14-mzamazal@redhat.com>","Content-Language":"en-US","From":"Dan Scally <dan.scally@ideasonboard.com>","Autocrypt":"addr=dan.scally@ideasonboard.com; keydata=\n\t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","In-Reply-To":"<20240717085444.289997-14-mzamazal@redhat.com>","Content-Type":"text/plain; charset=UTF-8; format=flowed","Content-Transfer-Encoding":"7bit","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}},{"id":30769,"web_url":"https://patchwork.libcamera.org/comment/30769/","msgid":"<20240812224533.GH32749@pendragon.ideasonboard.com>","date":"2024-08-12T22:45:33","subject":"Re: [PATCH v3 13/23] libcamera: software_isp: Create algorithms","submitter":{"id":2,"url":"https://patchwork.libcamera.org/api/people/2/","name":"Laurent Pinchart","email":"laurent.pinchart@ideasonboard.com"},"content":"Hi Milan,\n\nThank you for the patch.\n\nOn Wed, Jul 17, 2024 at 10:54:34AM +0200, Milan Zamazal wrote:\n> We are ready to introduce algorithms now.  First, let's create\n> algorithms.  The algorithms are not called yet, calls to them will be\n> added in followup patches.\n> \n> The maximum number of contexts is set to the same value as in hardware\n> pipelines.\n> \n> Signed-off-by: Milan Zamazal <mzamazal@redhat.com>\n> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>\n\nReviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n\n> ---\n>  src/ipa/simple/algorithms/meson.build |  4 ++++\n>  src/ipa/simple/data/uncalibrated.yaml |  1 +\n>  src/ipa/simple/meson.build            |  7 +++++--\n>  src/ipa/simple/soft_simple.cpp        | 14 ++++++++++++++\n>  4 files changed, 24 insertions(+), 2 deletions(-)\n>  create mode 100644 src/ipa/simple/algorithms/meson.build\n> \n> diff --git a/src/ipa/simple/algorithms/meson.build b/src/ipa/simple/algorithms/meson.build\n> new file mode 100644\n> index 00000000..31d26e43\n> --- /dev/null\n> +++ b/src/ipa/simple/algorithms/meson.build\n> @@ -0,0 +1,4 @@\n> +# SPDX-License-Identifier: CC0-1.0\n> +\n> +soft_simple_ipa_algorithms = files([\n> +])\n> diff --git a/src/ipa/simple/data/uncalibrated.yaml b/src/ipa/simple/data/uncalibrated.yaml\n> index ff981a1a..2cdc39a8 100644\n> --- a/src/ipa/simple/data/uncalibrated.yaml\n> +++ b/src/ipa/simple/data/uncalibrated.yaml\n> @@ -2,4 +2,5 @@\n>  %YAML 1.1\n>  ---\n>  version: 1\n> +algorithms:\n>  ...\n> diff --git a/src/ipa/simple/meson.build b/src/ipa/simple/meson.build\n> index 363251fb..7515a8d8 100644\n> --- a/src/ipa/simple/meson.build\n> +++ b/src/ipa/simple/meson.build\n> @@ -1,5 +1,8 @@\n>  # SPDX-License-Identifier: CC0-1.0\n>  \n> +subdir('algorithms')\n> +subdir('data')\n> +\n>  ipa_name = 'ipa_soft_simple'\n>  \n>  soft_simple_sources = files([\n> @@ -8,6 +11,8 @@ soft_simple_sources = files([\n>      'black_level.cpp',\n>  ])\n>  \n> +soft_simple_sources += soft_simple_ipa_algorithms\n> +\n>  mod = shared_module(ipa_name,\n>                      [soft_simple_sources, libcamera_generated_ipa_headers],\n>                      name_prefix : '',\n> @@ -25,6 +30,4 @@ if ipa_sign_module\n>                    build_by_default : true)\n>  endif\n>  \n> -subdir('data')\n> -\n>  ipa_names += ipa_name\n> diff --git a/src/ipa/simple/soft_simple.cpp b/src/ipa/simple/soft_simple.cpp\n> index 09e3c8f6..dd300387 100644\n> --- a/src/ipa/simple/soft_simple.cpp\n> +++ b/src/ipa/simple/soft_simple.cpp\n> @@ -53,12 +53,15 @@ static constexpr float kExposureOptimal = kExposureBinsCount / 2.0;\n>   * enough to prevent the exposure from wobbling around the optimal value.\n>   */\n>  static constexpr float kExposureSatisfactory = 0.2;\n> +/* Maximum number of frame contexts to be held */\n> +static constexpr uint32_t kMaxFrameContexts = 16;\n>  \n>  class IPASoftSimple : public ipa::soft::IPASoftInterface, public Module\n>  {\n>  public:\n>  \tIPASoftSimple()\n>  \t\t: params_(nullptr), stats_(nullptr), blackLevel_(BlackLevel()),\n> +\t\t  context_({ {}, {}, { kMaxFrameContexts } }),\n>  \t\t  ignoreUpdates_(0)\n>  \t{\n>  \t}\n> @@ -92,6 +95,8 @@ private:\n>  \tstatic constexpr unsigned int kGammaLookupSize = 1024;\n>  \tstd::array<uint8_t, kGammaLookupSize> gammaTable_;\n>  \tint lastBlackLevel_ = -1;\n> +\t/* Local parameter storage */\n> +\tstruct IPAContext context_;\n>  \n>  \tint32_t exposureMin_, exposureMax_;\n>  \tint32_t exposure_;\n> @@ -138,6 +143,15 @@ int IPASoftSimple::init(const IPASettings &settings,\n>  \tunsigned int version = (*data)[\"version\"].get<uint32_t>(0);\n>  \tLOG(IPASoft, Debug) << \"Tuning file version \" << version;\n>  \n> +\tif (!data->contains(\"algorithms\")) {\n> +\t\tLOG(IPASoft, Error) << \"Tuning file doesn't contain algorithms\";\n> +\t\treturn -EINVAL;\n> +\t}\n> +\n> +\tint ret = createAlgorithms(context_, (*data)[\"algorithms\"]);\n> +\tif (ret)\n> +\t\treturn ret;\n> +\n>  \tparams_ = nullptr;\n>  \tstats_ = nullptr;\n>","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id A86C4C323E\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon, 12 Aug 2024 22:46:00 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 9183A633B5;\n\tTue, 13 Aug 2024 00:45:59 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 7703E6337C\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 13 Aug 2024 00:45:57 +0200 (CEST)","from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi\n\t[81.175.209.231])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 8AC742EC;\n\tTue, 13 Aug 2024 00:45:00 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"aE2SKLYS\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1723502700;\n\tbh=9cxu4euK+ynPx8NuxTiZlB7bIRSNmac6fRfcFbILpt8=;\n\th=Date:From:To:Cc:Subject:References:In-Reply-To:From;\n\tb=aE2SKLYSasvQrkM/iSWq8sRUD+gxyCduAbmrzFLGbYw4LabDt1rv/752dgEU/G9bb\n\t0SnVdwmiwJzMVlZvQfXrDW1AZim19QJ0gDLGtPUCIPnHVAcX1Sj7Ob6c1i+NJpWTq8\n\tiURluGzGCG626chnf+rGBHyQdTOp6LoYgXSQXjg4=","Date":"Tue, 13 Aug 2024 01:45:33 +0300","From":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","To":"Milan Zamazal <mzamazal@redhat.com>","Cc":"libcamera-devel@lists.libcamera.org,\n\tUmang Jain <umang.jain@ideasonboard.com>","Subject":"Re: [PATCH v3 13/23] libcamera: software_isp: Create algorithms","Message-ID":"<20240812224533.GH32749@pendragon.ideasonboard.com>","References":"<20240717085444.289997-1-mzamazal@redhat.com>\n\t<20240717085444.289997-14-mzamazal@redhat.com>","MIME-Version":"1.0","Content-Type":"text/plain; charset=utf-8","Content-Disposition":"inline","In-Reply-To":"<20240717085444.289997-14-mzamazal@redhat.com>","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]