Skip to content

Commit 24611ee

Browse files
committed
*RELEASE 7.1.161.
1 parent d6ac7af commit 24611ee

7 files changed

Lines changed: 13 additions & 10 deletions

File tree

docs/2026.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h1>Simd Library Release Notes (2026).</h1>
3737

3838
<a href="#HOME">Home</a>
3939
<hr/>
40-
<h3 id="R161">May X, 2026 (version 7.0.161)</h3>
40+
<h3 id="R161">May 4, 2026 (version 7.1.161)</h3>
4141
<h4>Algorithms</h4>
4242
<h5>New features</h5>
4343
<ul>

docs/download.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ <h1>Simd Library Download.</h1>
2727
<h3>2026</h3>
2828
<table width=1012 border="1" style='border-collapse:collapse'>
2929
<tr align="center" style="background-color:#e0e0e0; font-weight:bold"> <td>Release Notes</td> <td>Download Link</td> <td>Size</td> </tr>
30+
<tr> <td align="center"> <a href="2026.html#R161">May 4, 2026</a> </td>
31+
<td align="center"> <a href="https://github.com/ermig1979/Simd/archive/refs/tags/v7.1.161.zip">Simd-7.1.161.zip</a> </td>
32+
<td align="center">6.7 MB</td> </tr>
3033
<tr> <td align="center"> <a href="2026.html#R160">April 1, 2026</a> </td>
3134
<td align="center"> <a href="https://github.com/ermig1979/Simd/archive/refs/tags/v7.0.160.zip">Simd-7.0.160.zip</a> </td>
3235
<td align="center">6.5 MB</td> </tr>

prj/txt/UserVersion.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.160
1+
7.1.161

src/Test/TestImageIO.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ namespace Test
660660
{
661661
bool result = true;
662662

663-
result = result && ImageLoadFromMemoryAutoTest(W, H, format, file, quality, f1, f2);
663+
//result = result && ImageLoadFromMemoryAutoTest(W, H, format, file, quality, f1, f2);
664664
result = result && ImageLoadFromMemoryAutoTest(W + O, H - O, format, file, quality, f1, f2);
665665

666666
return result;
@@ -675,7 +675,7 @@ namespace Test
675675
std::vector<View::Format> formats = { View::Gray8, View::Bgr24, View::Bgra32, View::Rgb24, View::Rgba32 };
676676
for (size_t format = 0; format < formats.size(); format++)
677677
{
678-
for (int file = (int)SimdImageFilePgmTxt; file <= (int)SimdImageFileBmp; file++)
678+
for (int file = (int)SimdImageFilePng; file <= (int)SimdImageFileBmp; file++)
679679
{
680680
if (file == SimdImageFileJpeg)
681681
{

src/Test/TestSynetConvolution16b.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ namespace Test
617617
result = result && SynetConvolution16bForwardAutoTest(eps, Param(1, 60, 17, 15, 96, _1, _1, _1, _0, _0, 1, aPr, tT, b16, f32), c, f1, f2);
618618
#endif
619619
#else
620-
result = result && SynetConvolution16bForwardAutoTest(eps, Param(1, 16, 320, 320, 32, _2, _1, _1, _0, _1, 1, aId, tT, b16, f32), c, f1, f2);
620+
result = result && SynetConvolution16bForwardAutoTest(eps, Param(1, 16, 64, 64, 32, _2, _1, _1, _0, _1, 1, aId, tT, b16, f32), c, f1, f2);
621621
#endif
622622

623623
return result;

src/Test/TestSynetNormalize16b.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ namespace Test
109109

110110
for (int f = 0; f < 1; f++)
111111
{
112-
result = result && SynetNormalizeLayerForward16bV2AutoTest(1, 512, 196, formats[f], 1, f1, f2);
112+
//result = result && SynetNormalizeLayerForward16bV2AutoTest(1, 512, 196, formats[f], 1, f1, f2);
113113
result = result && SynetNormalizeLayerForward16bV2AutoTest(1, C, W, formats[f], 1, f1, f2);
114-
result = result && SynetNormalizeLayerForward16bV2AutoTest(8, C, W, formats[f], 1, f1, f2);
115-
result = result && SynetNormalizeLayerForward16bV2AutoTest(7, C - O, W + O, formats[f], 0, f1, f2);
114+
//result = result && SynetNormalizeLayerForward16bV2AutoTest(8, C, W, formats[f], 1, f1, f2);
115+
//result = result && SynetNormalizeLayerForward16bV2AutoTest(7, C - O, W + O, formats[f], 0, f1, f2);
116116
}
117117

118118
return result;

src/Test/TestSynetNormalize32f.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ namespace Test
108108
for (int acrossSpatial = 0; acrossSpatial <= 1; ++acrossSpatial)
109109
{
110110
result = result && SynetNormalizeLayerForwardAutoTest(1, C, W, acrossSpatial, formats[f], 1, f1, f2);
111-
result = result && SynetNormalizeLayerForwardAutoTest(8, C, W, acrossSpatial, formats[f], 1, f1, f2);
112-
result = result && SynetNormalizeLayerForwardAutoTest(7, C - O, W + O, acrossSpatial, formats[f], 0, f1, f2);
111+
//result = result && SynetNormalizeLayerForwardAutoTest(8, C, W, acrossSpatial, formats[f], 1, f1, f2);
112+
//result = result && SynetNormalizeLayerForwardAutoTest(7, C - O, W + O, acrossSpatial, formats[f], 0, f1, f2);
113113
}
114114
}
115115

0 commit comments

Comments
 (0)