Update metainfo

This commit is contained in:
2024-11-16 22:29:23 +01:00
parent d1344d2dc8
commit 4afa940886
2 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -470,7 +470,7 @@ void convertType2(uint32_t size, const T *src, U *dst)
if constexpr(std::is_integral_v<T> && (std::is_floating_point_v<U> || std::is_same_v<U, F16>))
{
U scale = 1.0 / std::numeric_limits<T>::max();
U scale = (U)(1.0 / (double)std::numeric_limits<T>::max());
for(uint32_t i = 0; i < size; i++)
dst[i] = (U)src[i] * scale;
}
+7
View File
@@ -57,6 +57,13 @@
</screenshots>
<content_rating type="oars-1.1"/>
<releases>
<release version="20241116" date="2024-11-16">
<description>
<ul>
<li>Extending support of data formats</li>
</ul>
</description>
</release>
<release version="20241002" date="2024-10-02">
<description>
<ul>