|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677 |
- // Copyright 2025 Tencent
- // SPDX-License-Identifier: BSD-3-Clause
-
- #include <stdio.h>
-
- #include "datareader.h"
- #include "paramdict.h"
-
- class ParamDictTest : public ncnn::ParamDict
- {
- public:
- int load_param(const char* str);
- int load_param_bin(const unsigned char* mem);
- };
-
- int ParamDictTest::load_param(const char* str)
- {
- const unsigned char* mem = (const unsigned char*)str;
- ncnn::DataReaderFromMemory dr(mem);
- return ncnn::ParamDict::load_param(dr);
- }
-
- int ParamDictTest::load_param_bin(const unsigned char* mem)
- {
- ncnn::DataReaderFromMemory dr(mem);
- return ncnn::ParamDict::load_param_bin(dr);
- }
-
- static int test_paramdict_0()
- {
- ParamDictTest pdt;
- pdt.load_param("0=100 1=1,-1,4,5,1,4 2=1.250000 -23303=5,0.1,0.2,-0.4,0.8,1.0 -23304=3,-1,10,-88");
-
- // int
- int typei = pdt.type(0);
- if (typei != 2)
- {
- fprintf(stderr, "test_paramdict int type failed %d != 2\n", typei);
- return -1;
- }
- int i = pdt.get(0, 0);
- if (i != 100)
- {
- fprintf(stderr, "test_paramdict int value failed %d != 100\n", i);
- return -1;
- }
-
- // int array
- int typeai = pdt.type(1);
- if (typeai != 5)
- {
- fprintf(stderr, "test_paramdict int array type failed %d != 5\n", typeai);
- return -1;
- }
- ncnn::Mat ai = pdt.get(1, ncnn::Mat());
- if (ai.w != 6)
- {
- fprintf(stderr, "test_paramdict int array size failed %d != 6\n", ai.w);
- return -1;
- }
- const int* p = ai;
- if (p[0] != 1 || p[1] != -1 || p[2] != 4 || p[3] != 5 || p[4] != 1 || p[5] != 4)
- {
- fprintf(stderr, "test_paramdict int array value failed %d %d %d %d %d %d\n", p[0], p[1], p[2], p[3], p[4], p[5]);
- return -1;
- }
-
- // float
- int typef = pdt.type(2);
- if (typef != 3)
- {
- fprintf(stderr, "test_paramdict float type failed %d != 3\n", typef);
- return -1;
- }
- float f = pdt.get(2, 0.f);
- if (f != 1.25f)
- {
- fprintf(stderr, "test_paramdict float value failed %f != 1.25f\n", f);
- return -1;
- }
-
- // float array
- int typeaf = pdt.type(3);
- if (typeaf != 6)
- {
- fprintf(stderr, "test_paramdict float array type failed %d != 6\n", typeaf);
- return -1;
- }
- ncnn::Mat af = pdt.get(3, ncnn::Mat());
- if (af.w != 5)
- {
- fprintf(stderr, "test_paramdict float array size failed %d != 5\n", af.w);
- return -1;
- }
- if (af[0] != 0.1f || af[1] != 0.2f || af[2] != -0.4f || af[3] != 0.8f || af[4] != 1.0f)
- {
- fprintf(stderr, "test_paramdict float array value failed %f %f %f %f %f\n", af[0], af[1], af[2], af[3], af[4]);
- return -1;
- }
-
- // int array
- typeai = pdt.type(4);
- if (typeai != 5)
- {
- fprintf(stderr, "test_paramdict int array type failed %d != 5\n", typeai);
- return -1;
- }
- ai = pdt.get(4, ncnn::Mat());
- if (ai.w != 3)
- {
- fprintf(stderr, "test_paramdict int array size failed %d != 3\n", ai.w);
- return -1;
- }
- p = ai;
- if (p[0] != -1 || p[1] != 10 || p[2] != -88)
- {
- fprintf(stderr, "test_paramdict int array value failed %d %d %d\n", p[0], p[1], p[2]);
- return -1;
- }
-
- return 0;
- }
-
- static int test_paramdict_1()
- {
- ParamDictTest pdt;
- pdt.load_param("0=-1 1=4, 2=0.01 3=-1.45e-2,3.14");
-
- // int
- int typei = pdt.type(0);
- if (typei != 2)
- {
- fprintf(stderr, "test_paramdict int type failed %d != 2\n", typei);
- return -1;
- }
- int i = pdt.get(0, 0);
- if (i != -1)
- {
- fprintf(stderr, "test_paramdict int value failed %d != -1\n", i);
- return -1;
- }
-
- // int array
- int typeai = pdt.type(1);
- if (typeai != 5)
- {
- fprintf(stderr, "test_paramdict int array type failed %d != 5\n", typeai);
- return -1;
- }
- ncnn::Mat ai = pdt.get(1, ncnn::Mat());
- if (ai.w != 1)
- {
- fprintf(stderr, "test_paramdict int array size failed %d != 1\n", ai.w);
- return -1;
- }
- const int* p = ai;
- if (p[0] != 4)
- {
- fprintf(stderr, "test_paramdict int array value failed %d\n", p[0]);
- return -1;
- }
-
- // float
- int typef = pdt.type(2);
- if (typef != 3)
- {
- fprintf(stderr, "test_paramdict float type failed %d != 3\n", typef);
- return -1;
- }
- float f = pdt.get(2, 0.f);
- if (f != 0.01f)
- {
- fprintf(stderr, "test_paramdict float value failed %f != 0.01f\n", f);
- return -1;
- }
-
- // float array
- int typeaf = pdt.type(3);
- if (typeaf != 6)
- {
- fprintf(stderr, "test_paramdict float array type failed %d != 6\n", typeaf);
- return -1;
- }
- ncnn::Mat af = pdt.get(3, ncnn::Mat());
- if (af.w != 2)
- {
- fprintf(stderr, "test_paramdict float array size failed %d != 2\n", af.w);
- return -1;
- }
- if (af[0] != -0.0145f || af[1] != 3.14f)
- {
- fprintf(stderr, "test_paramdict float array value failed %f %f\n", af[0], af[1]);
- return -1;
- }
-
- return 0;
- }
-
- static int test_paramdict_2()
- {
- ParamDictTest pdt;
- pdt.load_param("0=bij,bjk->bik 1=This_is_a_very_long_long_string 3=\"1,2,3 and 6.667 zzz\" 2=\"X\"");
-
- // string
- int types = pdt.type(0);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- std::string s = pdt.get(0, "");
- if (s != "bij,bjk->bik")
- {
- fprintf(stderr, "test_paramdict string text failed %s != bij,bjk->bik\n", s.c_str());
- return -1;
- }
-
- // string
- types = pdt.type(1);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- s = pdt.get(1, "");
- if (s != "This_is_a_very_long_long_string")
- {
- fprintf(stderr, "test_paramdict string text failed %s != This_is_a_very_long_long_string\n", s.c_str());
- return -1;
- }
-
- // string
- types = pdt.type(2);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- s = pdt.get(2, "");
- if (s != "X")
- {
- fprintf(stderr, "test_paramdict string text failed %s != X\n", s.c_str());
- return -1;
- }
-
- // string
- types = pdt.type(3);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- s = pdt.get(3, "");
- if (s != "1,2,3 and 6.667 zzz")
- {
- fprintf(stderr, "test_paramdict string text failed %s != \"1,2,3 and 6.667 zzz\"\n", s.c_str());
- return -1;
- }
-
- return 0;
- }
-
- static int test_paramdict_3()
- {
- const unsigned char mem[] = {
- 0x00, 0x00, 0x00, 0x00,
- 0x64, 0x00, 0x00, 0x00,
- 0xfb, 0xa4, 0xff, 0xff,
- 0x06, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff,
- 0x04, 0x00, 0x00, 0x00,
- 0x05, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00,
- 0x04, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0xa0, 0x3f,
- 0xf9, 0xa4, 0xff, 0xff,
- 0x05, 0x00, 0x00, 0x00,
- 0xcd, 0xcc, 0xcc, 0x3d,
- 0xcd, 0xcc, 0x4c, 0x3e,
- 0xcd, 0xcc, 0xcc, 0xbe,
- 0xcd, 0xcc, 0x4c, 0x3f,
- 0x00, 0x00, 0x80, 0x3f,
- 0x17, 0xff, 0xff, 0xff
- };
-
- ParamDictTest pdt;
- pdt.load_param_bin(mem);
-
- // int
- int typei = pdt.type(0);
- if (typei != 1)
- {
- fprintf(stderr, "test_paramdict int type failed %d != 1\n", typei);
- return -1;
- }
- int i = pdt.get(0, 0);
- if (i != 100)
- {
- fprintf(stderr, "test_paramdict int value failed %d != 100\n", i);
- return -1;
- }
-
- // int array
- int typeai = pdt.type(1);
- if (typeai != 4)
- {
- fprintf(stderr, "test_paramdict int array type failed %d != 4\n", typeai);
- return -1;
- }
- ncnn::Mat ai = pdt.get(1, ncnn::Mat());
- if (ai.w != 6)
- {
- fprintf(stderr, "test_paramdict int array size failed %d != 6\n", ai.w);
- return -1;
- }
- const int* p = ai;
- if (p[0] != 1 || p[1] != -1 || p[2] != 4 || p[3] != 5 || p[4] != 1 || p[5] != 4)
- {
- fprintf(stderr, "test_paramdict int array value failed %d %d %d %d %d %d\n", p[0], p[1], p[2], p[3], p[4], p[5]);
- return -1;
- }
-
- // float
- int typef = pdt.type(2);
- if (typef != 1)
- {
- fprintf(stderr, "test_paramdict float type failed %d != 1\n", typef);
- return -1;
- }
- float f = pdt.get(2, 0.f);
- if (f != 1.25f)
- {
- fprintf(stderr, "test_paramdict float value failed %f != 1.25f\n", f);
- return -1;
- }
-
- // float array
- int typeaf = pdt.type(3);
- if (typeaf != 4)
- {
- fprintf(stderr, "test_paramdict float array type failed %d != 4\n", typeaf);
- return -1;
- }
- ncnn::Mat af = pdt.get(3, ncnn::Mat());
- if (af.w != 5)
- {
- fprintf(stderr, "test_paramdict float array size failed %d != 5\n", af.w);
- return -1;
- }
- if (af[0] != 0.1f || af[1] != 0.2f || af[2] != -0.4f || af[3] != 0.8f || af[4] != 1.0f)
- {
- fprintf(stderr, "test_paramdict float array value failed %f %f %f %f %f\n", af[0], af[1], af[2], af[3], af[4]);
- return -1;
- }
-
- return 0;
- }
-
- static int test_paramdict_4()
- {
- const unsigned char mem[] = {
- 0x00, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff,
- 0xfb, 0xa4, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00,
- 0x04, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00,
- 0x0a, 0xd7, 0x23, 0x3c,
- 0xf9, 0xa4, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00,
- 0x68, 0x91, 0x6d, 0xbc,
- 0xc3, 0xf5, 0x48, 0x40,
- 0x17, 0xff, 0xff, 0xff
- };
-
- ParamDictTest pdt;
- pdt.load_param_bin(mem);
-
- // int
- int typei = pdt.type(0);
- if (typei != 1)
- {
- fprintf(stderr, "test_paramdict int type failed %d != 1\n", typei);
- return -1;
- }
- int i = pdt.get(0, 0);
- if (i != -1)
- {
- fprintf(stderr, "test_paramdict int value failed %d != -1\n", i);
- return -1;
- }
-
- // int array
- int typeai = pdt.type(1);
- if (typeai != 4)
- {
- fprintf(stderr, "test_paramdict int array type failed %d != 4\n", typeai);
- return -1;
- }
- ncnn::Mat ai = pdt.get(1, ncnn::Mat());
- if (ai.w != 1)
- {
- fprintf(stderr, "test_paramdict int array size failed %d != 1\n", ai.w);
- return -1;
- }
- const int* p = ai;
- if (p[0] != 4)
- {
- fprintf(stderr, "test_paramdict int array value failed %d\n", p[0]);
- return -1;
- }
-
- // float
- int typef = pdt.type(2);
- if (typef != 1)
- {
- fprintf(stderr, "test_paramdict float type failed %d != 1\n", typef);
- return -1;
- }
- float f = pdt.get(2, 0.f);
- if (f != 0.01f)
- {
- fprintf(stderr, "test_paramdict float value failed %f != 0.01f\n", f);
- return -1;
- }
-
- // float array
- int typeaf = pdt.type(3);
- if (typeaf != 4)
- {
- fprintf(stderr, "test_paramdict float array type failed %d != 4\n", typeaf);
- return -1;
- }
- ncnn::Mat af = pdt.get(3, ncnn::Mat());
- if (af.w != 2)
- {
- fprintf(stderr, "test_paramdict float array size failed %d != 2\n", af.w);
- return -1;
- }
- if (af[0] != -0.0145f || af[1] != 3.14f)
- {
- fprintf(stderr, "test_paramdict float array value failed %f %f\n", af[0], af[1]);
- return -1;
- }
-
- return 0;
- }
-
- static int test_paramdict_5()
- {
- const unsigned char mem[] = {
- 0x98, 0xa4, 0xff, 0xff,
- 0x0c, 0x00, 0x00, 0x00,
- 0x62, 0x69, 0x6a, 0x2c,
- 0x62, 0x6a, 0x6b, 0x2d,
- 0x3e, 0x62, 0x69, 0x6b,
- 0x97, 0xa4, 0xff, 0xff,
- 0x1f, 0x00, 0x00, 0x00,
- 0x54, 0x68, 0x69, 0x73,
- 0x5f, 0x69, 0x73, 0x5f,
- 0x61, 0x5f, 0x76, 0x65,
- 0x72, 0x79, 0x5f, 0x6c,
- 0x6f, 0x6e, 0x67, 0x5f,
- 0x6c, 0x6f, 0x6e, 0x67,
- 0x5f, 0x73, 0x74, 0x72,
- 0x69, 0x6e, 0x67, 0x00,
- 0x96, 0xa4, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00,
- 0x58, 0x00, 0x00, 0x00,
- 0x17, 0xff, 0xff, 0xff
- };
-
- ParamDictTest pdt;
- pdt.load_param_bin(mem);
-
- // string
- int types = pdt.type(0);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- std::string s = pdt.get(0, "");
- if (s != "bij,bjk->bik")
- {
- fprintf(stderr, "test_paramdict string text failed %s != bij,bjk->bik\n", s.c_str());
- return -1;
- }
-
- // string
- types = pdt.type(1);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- s = pdt.get(1, "");
- if (s != "This_is_a_very_long_long_string")
- {
- fprintf(stderr, "test_paramdict string text failed %s != This_is_a_very_long_long_string\n", s.c_str());
- return -1;
- }
-
- // string
- types = pdt.type(2);
- if (types != 7)
- {
- fprintf(stderr, "test_paramdict string type failed %d != 7\n", types);
- return -1;
- }
- s = pdt.get(2, "");
- if (s != "X")
- {
- fprintf(stderr, "test_paramdict string text failed %s != X\n", s.c_str());
- return -1;
- }
-
- return 0;
- }
-
- static int compare_paramdict(const ncnn::ParamDict& pd, const ncnn::ParamDict& pd0)
- {
- for (int id = 0;; id++)
- {
- const int type0 = pd0.type(id);
- if (type0 == 0)
- {
- break;
- }
- else if (type0 == 2)
- {
- const int i0 = pd0.get(id, 0);
- int i = pd.get(id, 0);
- if (i != i0)
- {
- fprintf(stderr, "compare_paramdict int failed %d != %d\n", i, i0);
- return -1;
- }
- }
- else if (type0 == 3)
- {
- const float f0 = pd0.get(id, 0.f);
- int f = pd.get(id, 0.f);
- if (f != f0)
- {
- fprintf(stderr, "compare_paramdict float failed %f != %f\n", f, f0);
- return -1;
- }
- }
- else if (type0 == 5)
- {
- const ncnn::Mat ai0 = pd0.get(id, ncnn::Mat());
- ncnn::Mat ai = pd.get(id, ncnn::Mat());
- if (ai.w != ai0.w)
- {
- fprintf(stderr, "compare_paramdict int array size failed %d != %d\n", ai.w, ai0.w);
- return -1;
- }
- for (int q = 0; q < ai0.w; q++)
- {
- int i0 = ((const int*)ai0)[q];
- int i = ((const int*)ai)[q];
- if (i != i0)
- {
- fprintf(stderr, "compare_paramdict int array element %d failed %d != %d\n", q, i, i0);
- return -1;
- }
- }
- }
- else if (type0 == 6)
- {
- const ncnn::Mat af0 = pd0.get(id, ncnn::Mat());
- ncnn::Mat af = pd.get(id, ncnn::Mat());
- if (af.w != af0.w)
- {
- fprintf(stderr, "compare_paramdict float array size failed %d != %d\n", af.w, af0.w);
- return -1;
- }
- for (int q = 0; q < af0.w; q++)
- {
- float f0 = af0[q];
- float f = af[q];
- if (f != f0)
- {
- fprintf(stderr, "compare_paramdict float array element %d failed %f != %f\n", q, f, f0);
- return -1;
- }
- }
- }
- else if (type0 == 7)
- {
- const std::string s0 = pd0.get(id, "");
- std::string s = pd.get(id, "");
- if (s != s0)
- {
- fprintf(stderr, "compare_paramdict string failed %s != %s\n", s.c_str(), s0.c_str());
- return -1;
- }
- }
- else
- {
- fprintf(stderr, "unexpected paramdict type %d\n", type0);
- return -1;
- }
- }
-
- return 0;
- }
-
- static int test_paramdict_6()
- {
- const int i0 = 11;
- const float f0 = -2.2f;
- const std::string s0 = "qwqwqwq";
- ncnn::Mat ai0(1);
- {
- int* p = ai0;
- p[0] = 233;
- }
-
- ncnn::Mat af0(4);
- {
- float* p = af0;
- p[0] = 2.33f;
- p[1] = -0.2f;
- p[2] = 0.f;
- p[3] = 9494.f;
- }
-
- ncnn::ParamDict pd0;
- pd0.set(1, i0);
- pd0.set(2, ai0);
- pd0.set(3, f0);
- pd0.set(4, af0);
- pd0.set(5, s0);
-
- // copy
- {
- ncnn::ParamDict pd(pd0);
-
- int ret = compare_paramdict(pd, pd0);
- if (ret != 0)
- {
- fprintf(stderr, "paramdict copy failed\n");
- return -1;
- }
- }
-
- // assign
- {
- ncnn::ParamDict pd;
- pd = pd0;
-
- int ret = compare_paramdict(pd, pd0);
- if (ret != 0)
- {
- fprintf(stderr, "paramdict assign failed\n");
- return -1;
- }
- }
-
- return 0;
- }
-
- int main()
- {
- return 0
- || test_paramdict_0()
- || test_paramdict_1()
- || test_paramdict_2()
- || test_paramdict_3()
- || test_paramdict_4()
- || test_paramdict_5()
- || test_paramdict_6();
- }
|