|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702 |
- // Tencent is pleased to support the open source community by making ncnn available.
- //
- // Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
- //
- // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
- // in compliance with the License. You may obtain a copy of the License at
- //
- // https://opensource.org/licenses/BSD-3-Clause
- //
- // Unless required by applicable law or agreed to in writing, software distributed
- // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- // CONDITIONS OF ANY KIND, either express or implied. See the License for the
- // specific language governing permissions and limitations under the License.
-
- #ifdef _MSC_VER
- #define _CRT_SECURE_NO_DEPRECATE
- #endif
-
- #include <algorithm>
- #include <set>
- #include <vector>
-
- // ncnn public header
- #include "datareader.h"
- #include "layer.h"
- #include "net.h"
-
- // ncnn private header
- #include "layer/batchnorm.h"
- #include "layer/bias.h"
- #include "layer/binaryop.h"
- #include "layer/clip.h"
- #include "layer/concat.h"
- #include "layer/convolution.h"
- #include "layer/convolutiondepthwise.h"
- #include "layer/crop.h"
- #include "layer/deconvolution.h"
- #include "layer/deconvolutiondepthwise.h"
- #include "layer/detectionoutput.h"
- #include "layer/dropout.h"
- #include "layer/eltwise.h"
- #include "layer/elu.h"
- #include "layer/exp.h"
- #include "layer/expanddims.h"
- #include "layer/flatten.h"
- #include "layer/hardsigmoid.h"
- #include "layer/hardswish.h"
- #include "layer/innerproduct.h"
- #include "layer/input.h"
- #include "layer/instancenorm.h"
- #include "layer/interp.h"
- #include "layer/log.h"
- #include "layer/lrn.h"
- #include "layer/lstm.h"
- #include "layer/memorydata.h"
- #include "layer/mvn.h"
- #include "layer/normalize.h"
- #include "layer/padding.h"
- #include "layer/permute.h"
- #include "layer/pixelshuffle.h"
- #include "layer/pooling.h"
- #include "layer/power.h"
- #include "layer/prelu.h"
- #include "layer/priorbox.h"
- #include "layer/proposal.h"
- #include "layer/psroipooling.h"
- #include "layer/quantize.h"
- #include "layer/reduction.h"
- #include "layer/relu.h"
- #include "layer/reorg.h"
- #include "layer/requantize.h"
- #include "layer/reshape.h"
- #include "layer/roialign.h"
- #include "layer/roipooling.h"
- #include "layer/scale.h"
- #include "layer/shufflechannel.h"
- #include "layer/slice.h"
- #include "layer/softmax.h"
- #include "layer/squeeze.h"
- #include "layer/threshold.h"
- #include "layer/unaryop.h"
- #include "layer/yolodetectionoutput.h"
- #include "layer/yolov3detectionoutput.h"
-
- #if defined(__aarch64__) && defined(LINUX)
- #include <cassert>
- #include <chrono>
- #include <limits>
- #include <locale>
- #include <random>
-
- #define TEXT_GREEN "\033[32m"
- #define TEXT_YELLOW "\033[33m"
- #define TEXT_RED "\033[31m"
- #define CLR "\033[0m"
-
- #endif // defined(__aarch64__) && defined(LINUX)
-
- class DataReaderFromEmpty : public ncnn::DataReader
- {
- public:
- virtual int scan(const char* format, void* p) const
- {
- return 0;
- }
- virtual size_t read(void* /*buf*/, size_t size) const
- {
- return size;
- }
- };
-
- class NetOptimize : public ncnn::Net
- {
- public:
- // 0=fp32 1=fp16
- int storage_type;
-
- public:
- int fuse_batchnorm_scale();
- int fuse_convolution_batchnorm();
- int fuse_convolution_mul();
- int fuse_convolution_add();
- int fuse_convolutiondepthwise_batchnorm();
- int fuse_convolutiondepthwise_mul();
- int fuse_convolutiondepthwise_add();
- int fuse_deconvolution_batchnorm();
- int fuse_deconvolution_mul();
- int fuse_deconvolution_add();
- int fuse_deconvolutiondepthwise_batchnorm();
- int fuse_innerproduct_batchnorm();
- int fuse_innerproduct_add();
- int fuse_innerproduct_dropout();
- int fuse_convolution_activation();
- int fuse_convolutiondepthwise_activation();
- int fuse_deconvolution_activation();
- int fuse_deconvolutiondepthwise_activation();
- int fuse_innerproduct_activation();
- int fuse_memorydata_binaryop();
- int fuse_binaryop_eltwise();
-
- int eliminate_dropout();
- int eliminate_pooling1x1();
- int eliminate_noop();
- int eliminate_orphaned_memorydata();
- int eliminate_flatten_after_global_pooling();
- int eliminate_reshape_after_global_pooling();
- int eliminate_flatten_after_innerproduct();
- int eliminate_reshape_before_binaryop();
-
- int replace_convolution_with_innerproduct_after_global_pooling();
- int replace_convolution_with_innerproduct_after_innerproduct();
-
- int shape_inference();
-
- public:
- int fprintf_param_int_array(int id, const ncnn::Mat& m, FILE* pp);
- int fprintf_param_float_array(int id, const ncnn::Mat& m, FILE* pp);
-
- int fwrite_weight_tag_data(int tag, const ncnn::Mat& data, FILE* bp);
- int fwrite_weight_data(const ncnn::Mat& data, FILE* bp);
-
- int save(const char* parampath, const char* binpath);
-
- #if defined(__aarch64__) && defined(LINUX)
- void gauss_random(ncnn::Mat& m);
- void find_fastest_fp32_conv(const char* name, int w, int h, int c);
- int support_fp32_conv_type(const ncnn::Convolution* op, const ncnn::Mat& mat, const int type);
- #endif
- };
-
- #if defined(__aarch64__) && defined(LINUX)
- void NetOptimize::gauss_random(ncnn::Mat& m)
- {
- std::random_device rd;
- std::mt19937 gen(rd());
- std::normal_distribution<float> d(1.0f, 1.0f);
- int size = m.total();
- for (int i = 0; i < size; ++i)
- {
- m[i] = d(gen);
- }
- }
-
- void NetOptimize::find_fastest_fp32_conv(const char* dataname, int w, int h, int c)
- {
- ncnn::PoolAllocator allocator;
- allocator.clear();
-
- ncnn::Option opt;
- // embeded system generally use single thread
- opt.num_threads = 1;
-
- const size_t layer_count = layers.size();
- ncnn::Extractor ex = create_extractor();
-
- ncnn::Mat input(w, h, c);
- if (ex.input(dataname, input) < 0)
- {
- fprintf(stderr, "set input failed, check dataname.\n");
- return;
- }
-
- const char* IMPL_NAME[6] = {"baseline", "winograd", "pointwise", "im2col", "direct", "conv3x3s2"};
- for (int i = 0; i < layer_count; ++i)
- {
- ncnn::Layer* layer = layers[i];
- if (layer->type == "Convolution")
- {
- ncnn::Convolution* op = (ncnn::Convolution*)layer;
-
- ncnn::Mat bottom_blob;
- ncnn::Mat top_blob;
-
- ex.extract(layer->bottoms[0], bottom_blob);
- ex.extract(layer->tops[0], top_blob);
-
- if (bottom_blob.empty() || top_blob.empty())
- {
- continue;
- }
-
- ncnn::Mat weight_blob(op->kernel_w, op->kernel_h, bottom_blob.c * top_blob.c);
-
- fprintf(stdout, TEXT_GREEN "Input [w h nc]: %d %d %d\n" CLR, bottom_blob.w, bottom_blob.h, bottom_blob.c);
- fprintf(stdout, TEXT_GREEN "Kernel [w h nc]: %d %d %d\n" CLR, op->kernel_w, op->kernel_h, bottom_blob.c * top_blob.c);
- fprintf(stdout, TEXT_GREEN "Output [w h nc]: %d %d %d\n" CLR, top_blob.w, top_blob.h, top_blob.c);
-
- // randomize input and kernel
- gauss_random(bottom_blob);
-
- // try every implementation
- double min_cost = std::numeric_limits<double>::max();
- int best_type = 0;
-
- // how much conv implementation type ncnn has ?
- for (int type = 1; type <= 5; ++type)
- {
- int support = support_fp32_conv_type(op, bottom_blob, type);
- if (support < 1)
- {
- // implementation type mismatch convolution configuration, skip
- continue;
- }
-
- op->impl_type = type;
-
- auto start = std::chrono::high_resolution_clock::now();
- const int NREPEATS = 20;
- op->create_pipeline(opt);
- for (int repeat = 0; repeat < NREPEATS; ++repeat)
- {
- op->forward(top_blob, bottom_blob, opt);
- }
- op->destroy_pipeline(opt);
-
- auto stop = std::chrono::high_resolution_clock::now();
- double cur_cost = std::chrono::duration<double, std::micro>(stop - start).count() / NREPEATS;
- fprintf(stdout, TEXT_GREEN "%s cost %0.3lfms \n" CLR, IMPL_NAME[type], cur_cost / 1000);
- if (cur_cost < min_cost)
- {
- min_cost = cur_cost;
- best_type = type;
- }
- }
- op->impl_type = best_type;
-
- fprintf(stdout, TEXT_YELLOW "%d: %s use %s \n\n" CLR, i, layer->name.c_str(), IMPL_NAME[op->impl_type]);
- }
- }
- }
-
- int NetOptimize::support_fp32_conv_type(const ncnn::Convolution* op, const ncnn::Mat& bottom, const int type)
- {
- // not baseline, then k_h == k_w and s_h == s_w
- // no dilation conv shall be allowed
- if (op->kernel_w != op->kernel_h || op->stride_w != op->stride_h || op->dilation_w != op->dilation_h || op->dilation_h != 1)
- {
- return -1;
- }
-
- // (kernel, stride) in {(1, 1), (1, 2), (2, 1), (3, 1), (3, 2), (4, 4), (5, 1), (5, 2), (7, 1), (7, 2)}
- const int support_table[7][4] = {
- {1, 1, 0, 0},
- {1, 0, 0, 0},
- {1, 1, 0, 0},
- {0, 0, 0, 1},
- {1, 1, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 0, 0}
- };
- // kernel_size x stride
- const int kernel = op->kernel_h,
- stride = op->stride_h;
- // if match prequisation
- switch (type)
- {
- case 1:
- // winograd
- if (kernel != 3 || stride != 1)
- {
- return -1;
- }
- break;
- case 2:
- // pointwise
- // input_h == 1, input_w == 1, dilation == 1, stride == 1
- if (bottom.h != 1 || bottom.w != 1 || stride != 1)
- {
- return -1;
- }
- break;
- case 3:
- // im2col
- break;
- case 4:
- // direct conv
- if (support_table[kernel - 1][stride - 1] == 0)
- {
- return -1;
- }
- break;
- case 5:
- // conv3x3s2
- // kernel == 3 and stride == 2
- if (kernel != 3 || stride != 2)
- {
- return -1;
- }
- break;
- default:
- fprintf(stderr, TEXT_RED "unrecognize convolution impl type: %d" CLR, type);
- break;
- }
-
- return 1;
- }
- #endif // defined(__aarch64__) && defined(LINUX)
-
- int NetOptimize::fuse_batchnorm_scale()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "BatchNorm")
- continue;
-
- // BatchNorm - Scale
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Scale")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse BatchNorm - Scale to BatchNorm
- ncnn::BatchNorm* batchnorm = (ncnn::BatchNorm*)layers[i];
- ncnn::Scale* scale = (ncnn::Scale*)layers[j];
-
- fprintf(stderr, "fuse_batchnorm_scale %s %s\n", batchnorm->name.c_str(), scale->name.c_str());
-
- {
- // v = ((v - mean) / sqrt(var + eps) * slope + bias) * s + b
- // = (v - mean) / sqrt(var + eps) * (slope * s) + (bias * s + b)
-
- int channels = batchnorm->channels;
-
- float* slope = batchnorm->slope_data;
- float* bias = batchnorm->bias_data;
-
- for (int q = 0; q < channels; q++)
- {
- slope[q] = slope[q] * scale->scale_data[q];
- if (scale->bias_term)
- bias[q] = bias[q] * scale->scale_data[q] + scale->bias_data[q];
- else
- bias[q] = bias[q] * scale->scale_data[q];
- }
- }
-
- int top_blob_index_final = scale->tops[0];
- batchnorm->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- scale->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolution_batchnorm()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Convolution")
- continue;
-
- // Convolution - BatchNorm
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BatchNorm")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Convolution - BatchNorm to Convolution
- ncnn::Convolution* convolution = (ncnn::Convolution*)layers[i];
- ncnn::BatchNorm* batchnorm = (ncnn::BatchNorm*)layers[j];
-
- fprintf(stderr, "fuse_convolution_batchnorm %s %s\n", convolution->name.c_str(), batchnorm->name.c_str());
-
- {
- int channels = batchnorm->channels;
- float eps = batchnorm->eps;
-
- // a = bias - slope * mean / sqrt(var + eps)
- // b = slope / sqrt(var + eps)
- // value = value * b + a
-
- std::vector<float> a(channels);
- std::vector<float> b(channels);
- for (int i = 0; i < channels; i++)
- {
- float sqrt_var = static_cast<float>(sqrt(batchnorm->var_data[i] + eps));
- a[i] = batchnorm->bias_data[i] - batchnorm->slope_data[i] * batchnorm->mean_data[i] / sqrt_var;
- b[i] = batchnorm->slope_data[i] / sqrt_var;
- }
-
- if (convolution->bias_term == 0)
- {
- // init bias as zero
- convolution->bias_term = 1;
- convolution->bias_data = ncnn::Mat(channels);
- convolution->bias_data.fill(0.f);
- }
-
- const int weight_per_outch = convolution->weight_data_size / channels;
-
- float* weight = convolution->weight_data;
- float* bias = convolution->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= b[i];
- }
-
- bias[i] = bias[i] * b[i] + a[i];
- }
- }
-
- int top_blob_index_final = batchnorm->tops[0];
- convolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- batchnorm->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolution_mul()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Convolution")
- continue;
-
- // Convolution - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Convolution - BinaryOp to Convolution
- ncnn::Convolution* convolution = (ncnn::Convolution*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 2 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = convolution->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_convolution_mul %s %s\n", convolution->name.c_str(), binaryop->name.c_str());
-
- {
- const int weight_per_outch = convolution->weight_data_size / channels;
-
- float* weight = convolution->weight_data;
- float* bias = convolution->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= memorydata->data[i];
- }
-
- if (bias)
- {
- bias[i] = bias[i] * memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- convolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolution_add()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Convolution")
- continue;
-
- // Convolution - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Convolution - BinaryOp to Convolution
- ncnn::Convolution* convolution = (ncnn::Convolution*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 0 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = convolution->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_convolution_add %s %s\n", convolution->name.c_str(), binaryop->name.c_str());
-
- {
- if (convolution->bias_term == 0)
- {
- // init bias
- convolution->bias_term = 1;
- convolution->bias_data = memorydata->data;
- }
- else
- {
- float* bias = convolution->bias_data;
- for (int i = 0; i < channels; i++)
- {
- bias[i] = bias[i] + memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- convolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolutiondepthwise_batchnorm()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "ConvolutionDepthWise")
- continue;
-
- // ConvolutionDepthWise - BatchNorm
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BatchNorm")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse ConvolutionDepthWise - BatchNorm to ConvolutionDepthWise
- ncnn::ConvolutionDepthWise* convolutiondepthwise = (ncnn::ConvolutionDepthWise*)layers[i];
- ncnn::BatchNorm* batchnorm = (ncnn::BatchNorm*)layers[j];
-
- fprintf(stderr, "fuse_convolutiondepthwise_batchnorm %s %s\n", convolutiondepthwise->name.c_str(), batchnorm->name.c_str());
-
- {
- int channels = batchnorm->channels;
- float eps = batchnorm->eps;
-
- // a = bias - slope * mean / sqrt(var + eps)
- // b = slope / sqrt(var + eps)
- // value = value * b + a
-
- std::vector<float> a(channels);
- std::vector<float> b(channels);
- for (int i = 0; i < channels; i++)
- {
- float sqrt_var = static_cast<float>(sqrt(batchnorm->var_data[i] + eps));
- a[i] = batchnorm->bias_data[i] - batchnorm->slope_data[i] * batchnorm->mean_data[i] / sqrt_var;
- b[i] = batchnorm->slope_data[i] / sqrt_var;
- }
-
- if (convolutiondepthwise->bias_term == 0)
- {
- // init bias as zero
- convolutiondepthwise->bias_term = 1;
- convolutiondepthwise->bias_data = ncnn::Mat(channels);
- convolutiondepthwise->bias_data.fill(0.f);
- }
-
- const int weight_per_outch = convolutiondepthwise->weight_data_size / channels;
-
- float* weight = convolutiondepthwise->weight_data;
- float* bias = convolutiondepthwise->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= b[i];
- }
-
- bias[i] = bias[i] * b[i] + a[i];
- }
- }
-
- int top_blob_index_final = batchnorm->tops[0];
- convolutiondepthwise->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- batchnorm->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolutiondepthwise_mul()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "ConvolutionDepthWise")
- continue;
-
- // ConvolutionDepthWise - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse ConvolutionDepthWise - BinaryOp to ConvolutionDepthWise
- ncnn::ConvolutionDepthWise* convolutiondepthwise = (ncnn::ConvolutionDepthWise*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 2 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = convolutiondepthwise->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_convolutiondepthwise_mul %s %s\n", convolutiondepthwise->name.c_str(), binaryop->name.c_str());
-
- {
- const int weight_per_outch = convolutiondepthwise->weight_data_size / channels;
-
- float* weight = convolutiondepthwise->weight_data;
- float* bias = convolutiondepthwise->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= memorydata->data[i];
- }
-
- if (bias)
- {
- bias[i] = bias[i] * memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- convolutiondepthwise->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolutiondepthwise_add()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "ConvolutionDepthWise")
- continue;
-
- // ConvolutionDepthWise - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse ConvolutionDepthWise - BinaryOp to ConvolutionDepthWise
- ncnn::ConvolutionDepthWise* convolutiondepthwise = (ncnn::ConvolutionDepthWise*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 0 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = convolutiondepthwise->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_convolutiondepthwise_add %s %s\n", convolutiondepthwise->name.c_str(), binaryop->name.c_str());
-
- {
- if (convolutiondepthwise->bias_term == 0)
- {
- // init bias
- convolutiondepthwise->bias_term = 1;
- convolutiondepthwise->bias_data = memorydata->data;
- }
- else
- {
- float* bias = convolutiondepthwise->bias_data;
- for (int i = 0; i < channels; i++)
- {
- bias[i] = bias[i] + memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- convolutiondepthwise->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_deconvolution_batchnorm()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Deconvolution")
- continue;
-
- // Deconvolution - BatchNorm
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BatchNorm")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Deconvolution - BatchNorm to Deconvolution
- ncnn::Deconvolution* deconvolution = (ncnn::Deconvolution*)layers[i];
- ncnn::BatchNorm* batchnorm = (ncnn::BatchNorm*)layers[j];
-
- fprintf(stderr, "fuse_deconvolution_batchnorm %s %s\n", deconvolution->name.c_str(), batchnorm->name.c_str());
-
- {
- int channels = batchnorm->channels;
- float eps = batchnorm->eps;
-
- // a = bias - slope * mean / sqrt(var + eps)
- // b = slope / sqrt(var + eps)
- // value = value * b + a
-
- std::vector<float> a(channels);
- std::vector<float> b(channels);
- for (int i = 0; i < channels; i++)
- {
- float sqrt_var = static_cast<float>(sqrt(batchnorm->var_data[i] + eps));
- a[i] = batchnorm->bias_data[i] - batchnorm->slope_data[i] * batchnorm->mean_data[i] / sqrt_var;
- b[i] = batchnorm->slope_data[i] / sqrt_var;
- }
-
- if (deconvolution->bias_term == 0)
- {
- // init bias as zero
- deconvolution->bias_term = 1;
- deconvolution->bias_data = ncnn::Mat(channels);
- deconvolution->bias_data.fill(0.f);
- }
-
- const int weight_per_outch = deconvolution->weight_data_size / channels;
-
- float* weight = deconvolution->weight_data;
- float* bias = deconvolution->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= b[i];
- }
-
- bias[i] = bias[i] * b[i] + a[i];
- }
- }
-
- int top_blob_index_final = batchnorm->tops[0];
- deconvolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- batchnorm->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_deconvolution_mul()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Deconvolution")
- continue;
-
- // Deconvolution - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Deconvolution - BinaryOp to Deconvolution
- ncnn::Deconvolution* deconvolution = (ncnn::Deconvolution*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 2 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = deconvolution->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_deconvolution_mul %s %s\n", deconvolution->name.c_str(), binaryop->name.c_str());
-
- {
- const int weight_per_outch = deconvolution->weight_data_size / channels;
-
- float* weight = deconvolution->weight_data;
- float* bias = deconvolution->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= memorydata->data[i];
- }
-
- if (bias)
- {
- bias[i] = bias[i] * memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- deconvolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_deconvolution_add()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Deconvolution")
- continue;
-
- // Deconvolution - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Deconvolution - BinaryOp to Deconvolution
- ncnn::Deconvolution* deconvolution = (ncnn::Deconvolution*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 0 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = deconvolution->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_deconvolution_add %s %s\n", deconvolution->name.c_str(), binaryop->name.c_str());
-
- {
- if (deconvolution->bias_term == 0)
- {
- // init bias
- deconvolution->bias_term = 1;
- deconvolution->bias_data = memorydata->data;
- }
- else
- {
- float* bias = deconvolution->bias_data;
- for (int i = 0; i < channels; i++)
- {
- bias[i] = bias[i] + memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- deconvolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_deconvolutiondepthwise_batchnorm()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "DeconvolutionDepthWise")
- continue;
-
- // DeconvolutionDepthWise - BatchNorm
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BatchNorm")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse DeconvolutionDepthWise - BatchNorm to DeconvolutionDepthWise
- ncnn::DeconvolutionDepthWise* deconvolutiondepthwise = (ncnn::DeconvolutionDepthWise*)layers[i];
- ncnn::BatchNorm* batchnorm = (ncnn::BatchNorm*)layers[j];
-
- fprintf(stderr, "fuse_deconvolutiondepthwise_batchnorm %s %s\n", deconvolutiondepthwise->name.c_str(), batchnorm->name.c_str());
-
- {
- int channels = batchnorm->channels;
- float eps = batchnorm->eps;
-
- // a = bias - slope * mean / sqrt(var + eps)
- // b = slope / sqrt(var + eps)
- // value = value * b + a
-
- std::vector<float> a(channels);
- std::vector<float> b(channels);
- for (int i = 0; i < channels; i++)
- {
- float sqrt_var = static_cast<float>(sqrt(batchnorm->var_data[i] + eps));
- a[i] = batchnorm->bias_data[i] - batchnorm->slope_data[i] * batchnorm->mean_data[i] / sqrt_var;
- b[i] = batchnorm->slope_data[i] / sqrt_var;
- }
-
- if (deconvolutiondepthwise->bias_term == 0)
- {
- // init bias as zero
- deconvolutiondepthwise->bias_term = 1;
- deconvolutiondepthwise->bias_data = ncnn::Mat(channels);
- deconvolutiondepthwise->bias_data.fill(0.f);
- }
-
- const int weight_per_outch = deconvolutiondepthwise->weight_data_size / channels;
-
- float* weight = deconvolutiondepthwise->weight_data;
- float* bias = deconvolutiondepthwise->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= b[i];
- }
-
- bias[i] = bias[i] * b[i] + a[i];
- }
- }
-
- int top_blob_index_final = batchnorm->tops[0];
- deconvolutiondepthwise->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- batchnorm->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_innerproduct_batchnorm()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "InnerProduct")
- continue;
-
- // InnerProduct - BatchNorm
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BatchNorm")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse InnerProduct - BatchNorm to InnerProduct
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)layers[i];
- ncnn::BatchNorm* batchnorm = (ncnn::BatchNorm*)layers[j];
-
- fprintf(stderr, "fuse_innerproduct_batchnorm %s %s\n", innerproduct->name.c_str(), batchnorm->name.c_str());
-
- {
- int channels = batchnorm->channels;
- float eps = batchnorm->eps;
-
- // a = bias - slope * mean / sqrt(var + eps)
- // b = slope / sqrt(var + eps)
- // value = value * b + a
-
- std::vector<float> a(channels);
- std::vector<float> b(channels);
- for (int i = 0; i < channels; i++)
- {
- float sqrt_var = static_cast<float>(sqrt(batchnorm->var_data[i] + eps));
- a[i] = batchnorm->bias_data[i] - batchnorm->slope_data[i] * batchnorm->mean_data[i] / sqrt_var;
- b[i] = batchnorm->slope_data[i] / sqrt_var;
- }
-
- if (innerproduct->bias_term == 0)
- {
- // init bias as zero
- innerproduct->bias_term = 1;
- innerproduct->bias_data = ncnn::Mat(channels);
- innerproduct->bias_data.fill(0.f);
- }
-
- const int weight_per_outch = innerproduct->weight_data_size / channels;
-
- float* weight = innerproduct->weight_data;
- float* bias = innerproduct->bias_data;
- for (int i = 0; i < channels; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= b[i];
- }
-
- bias[i] = bias[i] * b[i] + a[i];
- }
- }
-
- int top_blob_index_final = batchnorm->tops[0];
- innerproduct->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- batchnorm->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_innerproduct_add()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "InnerProduct")
- continue;
-
- // InnerProduct - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse InnerProduct - BinaryOp to InnerProduct
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- if (binaryop->op_type != 0 || binaryop->with_scalar)
- continue;
-
- // MemoryData - ..... - BinaryOp
- int k = 0;
- for (; k < j; k++)
- {
- if (layers[k]->type != "MemoryData")
- continue;
-
- if (layers[k]->tops[0] == binaryop->bottoms[1])
- break;
- }
-
- if (k == j)
- continue;
-
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[k];
-
- int channels = innerproduct->num_output;
-
- if (memorydata->w != channels || memorydata->h != 0 || memorydata->c != 0)
- {
- // not bias-like broadcasting type
- continue;
- }
-
- fprintf(stderr, "fuse_innerproduct_add %s %s\n", innerproduct->name.c_str(), binaryop->name.c_str());
-
- {
- if (innerproduct->bias_term == 0)
- {
- // init bias
- innerproduct->bias_term = 1;
- innerproduct->bias_data = memorydata->data;
- }
- else
- {
- float* bias = innerproduct->bias_data;
- for (int i = 0; i < channels; i++)
- {
- bias[i] = bias[i] + memorydata->data[i];
- }
- }
- }
-
- int top_blob_index_final = binaryop->tops[0];
- innerproduct->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- binaryop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_innerproduct_dropout()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "InnerProduct")
- continue;
-
- // InnerProduct - Dropout
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Dropout")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse InnerProduct - Dropout to InnerProduct
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)layers[i];
- ncnn::Dropout* dropout = (ncnn::Dropout*)layers[j];
-
- fprintf(stderr, "fuse_innerproduct_dropout %s %s\n", innerproduct->name.c_str(), dropout->name.c_str());
-
- float scale = dropout->scale;
- if (scale != 1.f)
- {
- const int num_output = innerproduct->num_output;
- const int weight_per_outch = innerproduct->weight_data_size / num_output;
-
- float* weight = innerproduct->weight_data;
- for (int i = 0; i < num_output; i++)
- {
- float* conv_weight_outch = weight + weight_per_outch * i;
- for (int j = 0; j < weight_per_outch; j++)
- {
- conv_weight_outch[j] *= scale;
- }
- }
-
- if (innerproduct->bias_term)
- {
- float* bias = innerproduct->bias_data;
- for (int i = 0; i < num_output; i++)
- {
- bias[i] *= scale;
- }
- }
- }
-
- int top_blob_index_final = dropout->tops[0];
- innerproduct->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- dropout->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolution_activation()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Convolution")
- continue;
-
- // Convolution - Activation
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "ReLU" && layers[j]->type != "Clip" && layers[j]->type != "Sigmoid" && layers[j]->type != "Mish")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Convolution - Activation to Convolution
- ncnn::Convolution* convolution = (ncnn::Convolution*)layers[i];
- ncnn::Layer* activation = layers[j];
-
- fprintf(stderr, "fuse_convolution_activation %s %s\n", convolution->name.c_str(), activation->name.c_str());
-
- if (activation->type == "ReLU")
- {
- ncnn::ReLU* relu = (ncnn::ReLU*)activation;
-
- if (relu->slope == 0.f)
- {
- convolution->activation_type = 1;
- }
- else
- {
- convolution->activation_type = 2;
- convolution->activation_params = ncnn::Mat(1);
- convolution->activation_params[0] = relu->slope;
- }
- }
- else if (activation->type == "Clip")
- {
- ncnn::Clip* clip = (ncnn::Clip*)activation;
-
- convolution->activation_type = 3;
- convolution->activation_params = ncnn::Mat(2);
- convolution->activation_params[0] = clip->min;
- convolution->activation_params[1] = clip->max;
- }
- else if (activation->type == "Sigmoid")
- {
- convolution->activation_type = 4;
- }
- else if (activation->type == "Mish")
- {
- convolution->activation_type = 5;
- }
-
- int top_blob_index_final = activation->tops[0];
- convolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- activation->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_convolutiondepthwise_activation()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "ConvolutionDepthWise")
- continue;
-
- // ConvolutionDepthWise - Activation
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "ReLU" && layers[j]->type != "Clip" && layers[j]->type != "Sigmoid" && layers[j]->type != "Mish")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse ConvolutionDepthWise - Activation to ConvolutionDepthWise
- ncnn::ConvolutionDepthWise* convolutiondepthwise = (ncnn::ConvolutionDepthWise*)layers[i];
- ncnn::Layer* activation = layers[j];
-
- fprintf(stderr, "fuse_convolutiondepthwise_activation %s %s\n", convolutiondepthwise->name.c_str(), activation->name.c_str());
-
- if (activation->type == "ReLU")
- {
- ncnn::ReLU* relu = (ncnn::ReLU*)activation;
-
- if (relu->slope == 0.f)
- {
- convolutiondepthwise->activation_type = 1;
- }
- else
- {
- convolutiondepthwise->activation_type = 2;
- convolutiondepthwise->activation_params = ncnn::Mat(1);
- convolutiondepthwise->activation_params[0] = relu->slope;
- }
- }
- else if (activation->type == "Clip")
- {
- ncnn::Clip* clip = (ncnn::Clip*)activation;
-
- convolutiondepthwise->activation_type = 3;
- convolutiondepthwise->activation_params = ncnn::Mat(2);
- convolutiondepthwise->activation_params[0] = clip->min;
- convolutiondepthwise->activation_params[1] = clip->max;
- }
- else if (activation->type == "Sigmoid")
- {
- convolutiondepthwise->activation_type = 4;
- }
- else if (activation->type == "Mish")
- {
- convolutiondepthwise->activation_type = 5;
- }
-
- int top_blob_index_final = activation->tops[0];
- convolutiondepthwise->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- activation->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_deconvolution_activation()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Deconvolution")
- continue;
-
- // Deconvolution - Activation
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "ReLU" && layers[j]->type != "Clip" && layers[j]->type != "Sigmoid")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse Deconvolution - Activation to Deconvolution
- ncnn::Deconvolution* deconvolution = (ncnn::Deconvolution*)layers[i];
- ncnn::Layer* activation = layers[j];
-
- fprintf(stderr, "fuse_deconvolution_activation %s %s\n", deconvolution->name.c_str(), activation->name.c_str());
-
- if (activation->type == "ReLU")
- {
- ncnn::ReLU* relu = (ncnn::ReLU*)activation;
-
- if (relu->slope == 0.f)
- {
- deconvolution->activation_type = 1;
- }
- else
- {
- deconvolution->activation_type = 2;
- deconvolution->activation_params = ncnn::Mat(1);
- deconvolution->activation_params[0] = relu->slope;
- }
- }
- else if (activation->type == "Clip")
- {
- ncnn::Clip* clip = (ncnn::Clip*)activation;
-
- deconvolution->activation_type = 3;
- deconvolution->activation_params = ncnn::Mat(2);
- deconvolution->activation_params[0] = clip->min;
- deconvolution->activation_params[1] = clip->max;
- }
- else if (activation->type == "Sigmoid")
- {
- deconvolution->activation_type = 4;
- }
-
- int top_blob_index_final = activation->tops[0];
- deconvolution->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- activation->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_deconvolutiondepthwise_activation()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "DeconvolutionDepthWise")
- continue;
-
- // DeconvolutionDepthWise - Activation
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "ReLU" && layers[j]->type != "Clip" && layers[j]->type != "Sigmoid")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse DeconvolutionDepthWise - Activation to DeconvolutionDepthWise
- ncnn::DeconvolutionDepthWise* deconvolutiondepthwise = (ncnn::DeconvolutionDepthWise*)layers[i];
- ncnn::Layer* activation = layers[j];
-
- fprintf(stderr, "fuse_deconvolutiondepthwise_activation %s %s\n", deconvolutiondepthwise->name.c_str(), activation->name.c_str());
-
- if (activation->type == "ReLU")
- {
- ncnn::ReLU* relu = (ncnn::ReLU*)activation;
-
- if (relu->slope == 0.f)
- {
- deconvolutiondepthwise->activation_type = 1;
- }
- else
- {
- deconvolutiondepthwise->activation_type = 2;
- deconvolutiondepthwise->activation_params = ncnn::Mat(1);
- deconvolutiondepthwise->activation_params[0] = relu->slope;
- }
- }
- else if (activation->type == "Clip")
- {
- ncnn::Clip* clip = (ncnn::Clip*)activation;
-
- deconvolutiondepthwise->activation_type = 3;
- deconvolutiondepthwise->activation_params = ncnn::Mat(2);
- deconvolutiondepthwise->activation_params[0] = clip->min;
- deconvolutiondepthwise->activation_params[1] = clip->max;
- }
- else if (activation->type == "Sigmoid")
- {
- deconvolutiondepthwise->activation_type = 4;
- }
-
- int top_blob_index_final = activation->tops[0];
- deconvolutiondepthwise->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- activation->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_innerproduct_activation()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "InnerProduct")
- continue;
-
- // InnerProduct - Activation
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "ReLU" && layers[j]->type != "Clip" && layers[j]->type != "Sigmoid")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse InnerProduct - Activation to InnerProduct
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)layers[i];
- ncnn::Layer* activation = layers[j];
-
- fprintf(stderr, "fuse_innerproduct_activation %s %s\n", innerproduct->name.c_str(), activation->name.c_str());
-
- if (activation->type == "ReLU")
- {
- ncnn::ReLU* relu = (ncnn::ReLU*)activation;
-
- if (relu->slope == 0.f)
- {
- innerproduct->activation_type = 1;
- }
- else
- {
- innerproduct->activation_type = 2;
- innerproduct->activation_params = ncnn::Mat(1);
- innerproduct->activation_params[0] = relu->slope;
- }
- }
- else if (activation->type == "Clip")
- {
- ncnn::Clip* clip = (ncnn::Clip*)activation;
-
- innerproduct->activation_type = 3;
- innerproduct->activation_params = ncnn::Mat(2);
- innerproduct->activation_params[0] = clip->min;
- innerproduct->activation_params[1] = clip->max;
- }
- else if (activation->type == "Sigmoid")
- {
- innerproduct->activation_type = 4;
- }
-
- int top_blob_index_final = activation->tops[0];
- innerproduct->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- activation->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_memorydata_binaryop()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "MemoryData")
- continue;
-
- // MemoryData - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index || layers[j]->bottoms[1] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- // fuse MemoryData - BinaryOp to BinaryOp
- ncnn::MemoryData* memorydata = (ncnn::MemoryData*)layers[i];
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- int memorydata_index = 1;
-
- if (binaryop->bottoms[0] == top_blob_index)
- {
- int op_type = binaryop->op_type;
-
- if (op_type == ncnn::BinaryOp::Operation_ADD
- || op_type == ncnn::BinaryOp::Operation_MUL
- || op_type == ncnn::BinaryOp::Operation_MAX
- || op_type == ncnn::BinaryOp::Operation_MIN)
- {
- memorydata_index = 0;
- }
- else if (op_type == ncnn::BinaryOp::Operation_SUB)
- {
- binaryop->op_type = ncnn::BinaryOp::Operation_RSUB;
- memorydata_index = 0;
- }
- else if (op_type == ncnn::BinaryOp::Operation_DIV)
- {
- binaryop->op_type = ncnn::BinaryOp::Operation_RDIV;
- memorydata_index = 0;
- }
- else
- {
- // non interchangeable binaryop
- continue;
- }
- }
-
- if (memorydata->w != 1 || memorydata->h != 0 || memorydata->c != 0)
- {
- // not a scalar
- continue;
- }
-
- float scalar = memorydata->data[0];
-
- binaryop->with_scalar = 1;
- binaryop->b = scalar;
-
- fprintf(stderr, "fuse_memorydata_binaryop %s %s\n", memorydata->name.c_str(), binaryop->name.c_str());
-
- binaryop->bottoms.erase(binaryop->bottoms.begin() + memorydata_index);
- memorydata->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::fuse_binaryop_eltwise()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "BinaryOp")
- continue;
-
- if (layers[i]->bottoms.size() != 2)
- continue;
-
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[i];
-
- if (binaryop->op_type != ncnn::BinaryOp::Operation_ADD)
- continue;
-
- if (binaryop->with_scalar)
- continue;
-
- // BinaryOp - BinaryOp - BinaryOp
- int bottom_blob_index_0 = binaryop->bottoms[0];
- int bottom_blob_index_1 = binaryop->bottoms[1];
-
- int j0 = 0;
- for (; j0 < i; j0++)
- {
- if (layers[j0]->type != "BinaryOp")
- continue;
-
- if (layers[j0]->bottoms.size() != 1)
- continue;
-
- if (((ncnn::BinaryOp*)layers[j0])->op_type != ncnn::BinaryOp::Operation_MUL)
- continue;
-
- if (layers[j0]->tops[0] == bottom_blob_index_0)
- break;
- }
-
- int j1 = 0;
- for (; j1 < i; j1++)
- {
- if (layers[j1]->type != "BinaryOp")
- continue;
-
- if (layers[j1]->bottoms.size() != 1)
- continue;
-
- if (((ncnn::BinaryOp*)layers[j1])->op_type != ncnn::BinaryOp::Operation_MUL)
- continue;
-
- if (layers[j1]->tops[0] == bottom_blob_index_1)
- break;
- }
-
- if (j0 == i && j1 == i)
- continue;
-
- ncnn::BinaryOp* binaryop0 = (ncnn::BinaryOp*)layers[j0];
- ncnn::BinaryOp* binaryop1 = (ncnn::BinaryOp*)layers[j1];
-
- fprintf(stderr, "fuse_binaryop_eltwise %s %s %s\n", binaryop0->name.c_str(), binaryop1->name.c_str(), binaryop->name.c_str());
-
- ncnn::Eltwise* eltwise = (ncnn::Eltwise*)ncnn::create_layer("Eltwise");
-
- eltwise->type = "Eltwise";
- eltwise->name = binaryop->name;
- eltwise->bottoms = binaryop->bottoms;
- eltwise->tops = binaryop->tops;
-
- ncnn::ParamDict pd;
- eltwise->load_param(pd);
-
- eltwise->op_type = ncnn::Eltwise::Operation_SUM;
-
- eltwise->coeffs = ncnn::Mat(2);
-
- if (j0 != i && j1 != i)
- {
- // fuse BinaryOp - BinaryOp - BinaryOp to Eltwise
- eltwise->coeffs[0] = binaryop0->b;
- eltwise->coeffs[1] = binaryop1->b;
-
- eltwise->bottoms[0] = binaryop0->bottoms[0];
- eltwise->bottoms[1] = binaryop1->bottoms[0];
-
- binaryop0->type = "ncnnfused";
- binaryop1->type = "ncnnfused";
- }
- if (j0 != i && j1 == i)
- {
- // fuse BinaryOp - X - BinaryOp to Eltwise
- eltwise->coeffs[0] = binaryop0->b;
- eltwise->coeffs[1] = 1.f;
-
- eltwise->bottoms[0] = binaryop0->bottoms[0];
-
- binaryop0->type = "ncnnfused";
- }
- if (j0 == i && j1 != i)
- {
- // fuse X - BinaryOp - BinaryOp to Eltwise
- eltwise->coeffs[0] = 1.f;
- eltwise->coeffs[1] = binaryop1->b;
-
- eltwise->bottoms[1] = binaryop1->bottoms[0];
-
- binaryop1->type = "ncnnfused";
- }
-
- layers[i] = eltwise;
- delete binaryop;
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_dropout()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Dropout")
- continue;
-
- ncnn::Dropout* dropout = (ncnn::Dropout*)layers[i];
- if (dropout->scale != 1.f)
- continue;
-
- // Any - Dropout
- int bottom_blob_index = layers[i]->bottoms[0];
-
- int j = i - 1;
- for (; j >= 0; j--)
- {
- if (layers[j]->type == "ncnnfused")
- continue;
-
- if (layers[j]->tops.size() != 1)
- continue;
-
- if (layers[j]->tops[0] == bottom_blob_index)
- break;
- }
-
- if (j == -1)
- continue;
-
- ncnn::Layer* any = layers[j];
-
- fprintf(stderr, "eliminate_dropout %s %s\n", any->name.c_str(), dropout->name.c_str());
-
- int top_blob_index_final = dropout->tops[0];
- any->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = j;
- dropout->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_pooling1x1()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Pooling")
- continue;
-
- ncnn::Pooling* pooling = (ncnn::Pooling*)layers[i];
- if (pooling->pad_left != 0 || pooling->pad_right != 0 || pooling->pad_top != 0 || pooling->pad_bottom != 0)
- continue;
-
- if (pooling->kernel_w != 1 || pooling->kernel_h != 1 || pooling->stride_w != 1 || pooling->stride_h != 1)
- continue;
-
- if (pooling->global_pooling != 0)
- continue;
-
- // Any - Pooling
- int bottom_blob_index = layers[i]->bottoms[0];
-
- int top_i = -1;
- int j = i - 1;
- for (; j >= 0; j--)
- {
- if (layers[j]->type == "ncnnfused")
- continue;
-
- for (int k = 0; k < layers[j]->tops.size(); k++)
- {
- if (layers[j]->tops[k] == bottom_blob_index)
- {
- top_i = k;
- break;
- }
- }
-
- if (top_i != -1)
- break;
- }
-
- if (j == -1)
- continue;
-
- ncnn::Layer* any = layers[j];
-
- fprintf(stderr, "eliminate_pooling1x1 %s %s\n", any->name.c_str(), pooling->name.c_str());
-
- int top_blob_index_final = pooling->tops[0];
- any->tops[top_i] = top_blob_index_final;
- blobs[top_blob_index_final].producer = j;
- pooling->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_noop()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Noop")
- continue;
-
- ncnn::Layer* noop = layers[i];
-
- if (noop->bottoms.empty())
- {
- // Noop
- fprintf(stderr, "eliminate_noop %s\n", noop->name.c_str());
-
- size_t top_blob_count = noop->tops.size();
- for (int k = 0; k < top_blob_count; k++)
- {
- int top_blob_index_final = noop->tops[k];
- blobs[top_blob_index_final].producer = -1;
- }
- noop->type = "ncnnfused";
-
- continue;
- }
-
- // Any - Noop
- int bottom_blob_index = layers[i]->bottoms[0];
-
- int j = i - 1;
- for (; j >= 0; j--)
- {
- if (layers[j]->type == "ncnnfused")
- continue;
-
- if (layers[j]->tops.size() != 1)
- continue;
-
- if (layers[j]->tops[0] == bottom_blob_index)
- break;
- }
-
- if (j == -1)
- continue;
-
- ncnn::Layer* any = layers[j];
-
- fprintf(stderr, "eliminate_noop %s %s\n", any->name.c_str(), noop->name.c_str());
-
- size_t top_blob_count = std::min(noop->tops.size(), any->tops.size());
- for (int k = 0; k < top_blob_count; k++)
- {
- int top_blob_index_final = noop->tops[k];
- any->tops[k] = top_blob_index_final;
- blobs[top_blob_index_final].producer = j;
- }
- noop->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_orphaned_memorydata()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "MemoryData")
- continue;
-
- // MemoryData - X
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type == "ncnnfused")
- continue;
-
- bool orphaned = true;
- for (int k = 0; k < layers[j]->bottoms.size(); k++)
- {
- if (layers[j]->bottoms[k] == top_blob_index)
- {
- orphaned = false;
- break;
- }
- }
-
- if (!orphaned)
- break;
- }
-
- if (j < layer_count)
- continue;
-
- // assert orphaned == true
- fprintf(stderr, "eliminate_orphaned_memorydata %s\n", layers[i]->name.c_str());
-
- layers[i]->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_reshape_after_global_pooling()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Pooling")
- continue;
-
- ncnn::Pooling* pooling = (ncnn::Pooling*)layers[i];
- if (pooling->global_pooling == 0)
- continue;
-
- // Pooling - Reshape
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Reshape")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- ncnn::Reshape* reshape = (ncnn::Reshape*)layers[j];
- if (reshape->h != -233 || reshape->c != -233 || reshape->permute != 0)
- continue;
-
- fprintf(stderr, "eliminate_reshape_after_global_pooling %s %s\n", pooling->name.c_str(), reshape->name.c_str());
-
- int top_blob_index_final = reshape->tops[0];
- pooling->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- reshape->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_flatten_after_global_pooling()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Pooling")
- continue;
-
- ncnn::Pooling* pooling = (ncnn::Pooling*)layers[i];
- if (pooling->global_pooling == 0)
- continue;
-
- // Pooling - Flatten
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Flatten")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- ncnn::Flatten* flatten = (ncnn::Flatten*)layers[j];
-
- fprintf(stderr, "eliminate_flatten_after_global_pooling %s %s\n", pooling->name.c_str(), flatten->name.c_str());
-
- int top_blob_index_final = flatten->tops[0];
- pooling->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- flatten->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_flatten_after_innerproduct()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "InnerProduct")
- continue;
-
- // InnerProduct - Flatten
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Flatten")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)layers[i];
- ncnn::Flatten* flatten = (ncnn::Flatten*)layers[j];
-
- fprintf(stderr, "eliminate_flatten_after_innerproduct %s %s\n", innerproduct->name.c_str(), flatten->name.c_str());
-
- int top_blob_index_final = flatten->tops[0];
- innerproduct->tops[0] = top_blob_index_final;
- blobs[top_blob_index_final].producer = i;
- flatten->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::eliminate_reshape_before_binaryop()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Reshape")
- continue;
-
- ncnn::Reshape* reshape = (ncnn::Reshape*)layers[i];
- if (reshape->w != 1 || reshape->h != 1 || reshape->permute != 0)
- continue;
-
- // Reshape - BinaryOp
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "BinaryOp")
- continue;
-
- if (layers[j]->bottoms.size() != 2)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index || layers[j]->bottoms[1] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- ncnn::BinaryOp* binaryop = (ncnn::BinaryOp*)layers[j];
-
- fprintf(stderr, "eliminate_reshape_before_binaryop %s %s\n", reshape->name.c_str(), binaryop->name.c_str());
-
- int bottom_blob_index_final = reshape->bottoms[0];
- if (layers[j]->bottoms[0] == top_blob_index)
- binaryop->bottoms[0] = bottom_blob_index_final;
- if (layers[j]->bottoms[1] == top_blob_index)
- binaryop->bottoms[1] = bottom_blob_index_final;
- blobs[bottom_blob_index_final].consumers.erase(std::find(blobs[bottom_blob_index_final].consumers.begin(), blobs[bottom_blob_index_final].consumers.end(), i));
- blobs[bottom_blob_index_final].consumers.push_back(j);
- reshape->type = "ncnnfused";
- }
-
- return 0;
- }
-
- int NetOptimize::replace_convolution_with_innerproduct_after_global_pooling()
- {
- const size_t layer_count = layers.size();
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "Pooling")
- continue;
-
- ncnn::Pooling* pooling = (ncnn::Pooling*)layers[i];
- if (pooling->global_pooling == 0)
- continue;
-
- // Pooling - Convolution
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Convolution")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- ncnn::Convolution* convolution = (ncnn::Convolution*)layers[j];
-
- fprintf(stderr, "replace_convolution_with_innerproduct_after_global_pooling %s %s\n", pooling->name.c_str(), convolution->name.c_str());
-
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)ncnn::create_layer("InnerProduct");
-
- innerproduct->type = "InnerProduct";
- innerproduct->name = convolution->name;
- innerproduct->bottoms = convolution->bottoms;
- innerproduct->tops = convolution->tops;
-
- ncnn::ParamDict pd;
- innerproduct->load_param(pd);
-
- innerproduct->num_output = convolution->num_output;
- innerproduct->bias_term = convolution->bias_term;
- innerproduct->weight_data_size = convolution->weight_data_size;
- innerproduct->int8_scale_term = convolution->int8_scale_term;
-
- innerproduct->weight_data = convolution->weight_data;
- innerproduct->bias_data = convolution->bias_data;
- innerproduct->weight_data_int8_scales = convolution->weight_data_int8_scales;
- innerproduct->bottom_blob_int8_scale = convolution->bottom_blob_int8_scale;
-
- innerproduct->activation_type = convolution->activation_type;
- innerproduct->activation_params = convolution->activation_params;
-
- layers[j] = innerproduct;
- delete convolution;
- }
-
- return 0;
- }
-
- int NetOptimize::replace_convolution_with_innerproduct_after_innerproduct()
- {
- const size_t layer_count = layers.size();
- for (;;)
- {
- bool replaced = false;
-
- for (int i = 0; i < layer_count; i++)
- {
- if (layers[i]->type != "InnerProduct")
- continue;
-
- // InnerProduct - Convolution
- int top_blob_index = layers[i]->tops[0];
-
- int j = i + 1;
- for (; j < layer_count; j++)
- {
- if (layers[j]->type != "Convolution")
- continue;
-
- if (layers[j]->bottoms.size() != 1)
- continue;
-
- if (layers[j]->bottoms[0] == top_blob_index)
- break;
- }
-
- if (j == layer_count)
- continue;
-
- ncnn::InnerProduct* innerproduct = (ncnn::InnerProduct*)layers[i];
- ncnn::Convolution* convolution = (ncnn::Convolution*)layers[j];
-
- fprintf(stderr, "replace_convolution_with_innerproduct_after_innerproduct %s %s\n", innerproduct->name.c_str(), convolution->name.c_str());
-
- ncnn::InnerProduct* innerproduct2 = (ncnn::InnerProduct*)ncnn::create_layer("InnerProduct");
-
- innerproduct2->type = "InnerProduct";
- innerproduct2->name = convolution->name;
- innerproduct2->bottoms = convolution->bottoms;
- innerproduct2->tops = convolution->tops;
-
- ncnn::ParamDict pd;
- innerproduct2->load_param(pd);
-
- innerproduct2->num_output = convolution->num_output;
- innerproduct2->bias_term = convolution->bias_term;
- innerproduct2->weight_data_size = convolution->weight_data_size;
- innerproduct->int8_scale_term = convolution->int8_scale_term;
-
- innerproduct2->weight_data = convolution->weight_data;
- innerproduct2->bias_data = convolution->bias_data;
- innerproduct->weight_data_int8_scales = convolution->weight_data_int8_scales;
- innerproduct->bottom_blob_int8_scale = convolution->bottom_blob_int8_scale;
-
- innerproduct2->activation_type = convolution->activation_type;
- innerproduct2->activation_params = convolution->activation_params;
-
- layers[j] = innerproduct2;
- delete convolution;
-
- replaced = true;
- }
-
- if (!replaced)
- break;
- }
-
- return 0;
- }
-
- int NetOptimize::shape_inference()
- {
- const size_t layer_count = layers.size();
- const size_t blob_count = blobs.size();
-
- ncnn::Extractor ex = create_extractor();
-
- // prepare Input blobs
- for (size_t i = 0; i < layer_count; i++)
- {
- const ncnn::Layer* layer = layers[i];
- if (layer->type == "ncnnfused")
- continue;
-
- if (layer->type != "Input")
- continue;
-
- ncnn::Input* input = (ncnn::Input*)layer;
-
- int w = input->w;
- int h = input->h;
- int c = input->c;
-
- int dims = 0;
- if (w == 0 && h == 0 && c == 0) dims = 0;
- if (w != 0 && h == 0 && c == 0) dims = 1;
- if (w != 0 && h != 0 && c == 0) dims = 2;
- if (w != 0 && h != 0 && c != 0) dims = 3;
-
- if (dims == 0)
- {
- fprintf(stderr, "Input layer %s without shape info, shape_inference aborted\n", layer->name.c_str());
- return -1;
- }
-
- ncnn::Mat m;
- if (dims == 1) m.create(w);
- if (dims == 2) m.create(w, h);
- if (dims == 3) m.create(w, h, c);
-
- ex.input(layer->tops[0], m);
- }
-
- // prepare blobs with predefined shape
- for (size_t i = 0; i < blob_count; i++)
- {
- const ncnn::Blob blob = blobs[i];
-
- int dims = blob.shape.dims;
- int w = blob.shape.w;
- int h = blob.shape.h;
- int c = blob.shape.c;
-
- if (dims == 0)
- continue;
-
- ncnn::Mat m;
- if (dims == 1) m.create(w);
- if (dims == 2) m.create(w, h);
- if (dims == 3) m.create(w, h, c);
-
- ex.input(int(i), m);
- }
-
- fprintf(stderr, "shape_inference\n");
-
- // resolve all layer output blob shape
- for (size_t i = 0; i < layer_count; i++)
- {
- const ncnn::Layer* layer = layers[i];
- if (layer->type == "ncnnfused")
- continue;
-
- for (size_t j = 0; j < layer->tops.size(); j++)
- {
- int top_blob_index = layer->tops[j];
-
- ncnn::Mat m;
- ex.extract(top_blob_index, m);
-
- blobs[top_blob_index].shape = m;
- }
- }
-
- // assign all layer blob shape
- for (size_t i = 0; i < layer_count; i++)
- {
- ncnn::Layer* layer = layers[i];
- if (layer->type == "ncnnfused")
- continue;
-
- layer->bottom_shapes.resize(layer->bottoms.size());
- for (size_t j = 0; j < layer->bottoms.size(); j++)
- {
- int bottom_blob_index = layer->bottoms[j];
-
- layer->bottom_shapes[j] = blobs[bottom_blob_index].shape;
- }
-
- layer->top_shapes.resize(layer->tops.size());
- for (size_t j = 0; j < layer->tops.size(); j++)
- {
- int top_blob_index = layer->tops[j];
-
- layer->top_shapes[j] = blobs[top_blob_index].shape;
-
- // fprintf(stderr, "%d %4d %4d %4d | %2d %s\n", blobs[top_blob_index].shape.dims, blobs[top_blob_index].shape.w, blobs[top_blob_index].shape.h, blobs[top_blob_index].shape.c, top_blob_index, blobs[top_blob_index].name.c_str());
- }
- }
-
- return 0;
- }
-
- int NetOptimize::fprintf_param_int_array(int id, const ncnn::Mat& m, FILE* pp)
- {
- const int count = m.w;
- const int* ptr = m;
-
- fprintf(pp, " -%d=%d", 23300 + id, count);
- for (int i = 0; i < count; i++)
- {
- fprintf(pp, ",%d", ptr[i]);
- }
-
- return 0;
- }
-
- int NetOptimize::fprintf_param_float_array(int id, const ncnn::Mat& m, FILE* pp)
- {
- const int count = m.w;
- const float* ptr = m;
-
- fprintf(pp, " -%d=%d", 23300 + id, count);
- for (int i = 0; i < count; i++)
- {
- fprintf(pp, ",%e", ptr[i]);
- }
-
- return 0;
- }
-
- static inline size_t alignSize(size_t sz, int n)
- {
- return (sz + n - 1) & -n;
- }
-
- int NetOptimize::fwrite_weight_tag_data(int tag, const ncnn::Mat& data, FILE* bp)
- {
- int p0 = ftell(bp);
-
- ncnn::Mat data_flattened = data.reshape(data.w * data.h * data.c);
- if (storage_type == 1 && tag == 0)
- {
- tag = 0x01306B47; // fp16 magic
- fwrite(&tag, sizeof(int), 1, bp);
- ncnn::Mat data_flattened_fp16;
- ncnn::cast_float32_to_float16(data_flattened, data_flattened_fp16);
- fwrite(data_flattened_fp16.data, data_flattened_fp16.elemsize, data_flattened_fp16.w, bp);
- }
- else
- {
- fwrite(&tag, sizeof(int), 1, bp);
- fwrite(data_flattened.data, data_flattened.elemsize, data_flattened.w, bp);
- }
-
- // padding to 32bit align
- int nwrite = ftell(bp) - p0;
- size_t nalign = alignSize(nwrite, 4);
- unsigned char padding[4] = {0x00, 0x00, 0x00, 0x00};
- fwrite(padding, sizeof(unsigned char), nalign - nwrite, bp);
-
- return 0;
- }
-
- int NetOptimize::fwrite_weight_data(const ncnn::Mat& data, FILE* bp)
- {
- int p0 = ftell(bp);
-
- ncnn::Mat data_flattened = data.reshape(data.w * data.h * data.c);
- fwrite(data_flattened.data, data_flattened.elemsize, data_flattened.w, bp);
-
- // padding to 32bit align
- int nwrite = ftell(bp) - p0;
- size_t nalign = alignSize(nwrite, 4);
- unsigned char padding[4] = {0x00, 0x00, 0x00, 0x00};
- fwrite(padding, sizeof(unsigned char), nalign - nwrite, bp);
-
- return 0;
- }
-
- int NetOptimize::save(const char* parampath, const char* binpath)
- {
- FILE* pp = fopen(parampath, "wb");
- FILE* bp = fopen(binpath, "wb");
-
- fprintf(pp, "7767517\n");
-
- const size_t layer_count = layers.size();
-
- int layer_count_fused = 0;
- std::set<std::string> blob_names;
- for (int i = 0; i < layer_count; i++)
- {
- const ncnn::Layer* layer = layers[i];
- if (layer->type == "ncnnfused")
- continue;
-
- layer_count_fused++;
-
- size_t bottom_count = layer->bottoms.size();
- for (int j = 0; j < bottom_count; j++)
- {
- int bottom_blob_index = layer->bottoms[j];
- blob_names.insert(blobs[bottom_blob_index].name);
- }
-
- size_t top_count = layer->tops.size();
- for (int j = 0; j < top_count; j++)
- {
- int top_blob_index = layer->tops[j];
- blob_names.insert(blobs[top_blob_index].name);
- }
- }
-
- size_t blob_count_fused = blob_names.size();
-
- fprintf(pp, "%d %zd\n", layer_count_fused, blob_count_fused);
-
- for (int i = 0; i < layer_count; i++)
- {
- const ncnn::Layer* layer = layers[i];
- if (layer->type == "ncnnfused")
- continue;
-
- size_t bottom_count = layer->bottoms.size();
- size_t top_count = layer->tops.size();
-
- fprintf(pp, "%-24s %-24s %zd %zd", layer->type.c_str(), layer->name.c_str(), bottom_count, top_count);
-
- for (int j = 0; j < bottom_count; j++)
- {
- int bottom_blob_index = layer->bottoms[j];
- fprintf(pp, " %s", blobs[bottom_blob_index].name.c_str());
- }
- for (int j = 0; j < top_count; j++)
- {
- int top_blob_index = layer->tops[j];
- fprintf(pp, " %s", blobs[top_blob_index].name.c_str());
- }
-
- // write shape hints
- bool shape_ready = true;
- for (int j = 0; j < top_count; j++)
- {
- int top_blob_index = layer->tops[j];
-
- int dims = blobs[top_blob_index].shape.dims;
- if (dims == 0)
- {
- shape_ready = false;
- break;
- }
- }
- if (shape_ready)
- {
- fprintf(pp, " -23330=%zd", top_count * 4);
- for (int j = 0; j < top_count; j++)
- {
- int top_blob_index = layer->tops[j];
-
- int dims = blobs[top_blob_index].shape.dims;
- int w = blobs[top_blob_index].shape.w;
- int h = blobs[top_blob_index].shape.h;
- int c = blobs[top_blob_index].shape.c;
-
- fprintf(pp, ",%d,%d,%d,%d", dims, w, h, c);
- }
- }
-
- ncnn::Layer* layer_default = ncnn::create_layer(layer->typeindex);
-
- ncnn::ParamDict pd;
- layer_default->load_param(pd);
-
- #define fprintf_param_value(format, phase) \
- { \
- if (op->phase != op_default->phase) fprintf(pp, format, op->phase); \
- }
-
- if (layer->type == "BatchNorm")
- {
- ncnn::BatchNorm* op = (ncnn::BatchNorm*)layer;
- ncnn::BatchNorm* op_default = (ncnn::BatchNorm*)layer_default;
-
- fprintf_param_value(" 0=%d", channels)
- fprintf_param_value(" 1=%e", eps)
-
- fwrite_weight_data(op->slope_data, bp);
- fwrite_weight_data(op->mean_data, bp);
- fwrite_weight_data(op->var_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "Bias")
- {
- ncnn::Bias* op = (ncnn::Bias*)layer;
- ncnn::Bias* op_default = (ncnn::Bias*)layer_default;
-
- fprintf_param_value(" 0=%d", bias_data_size)
-
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "BinaryOp")
- {
- ncnn::BinaryOp* op = (ncnn::BinaryOp*)layer;
- ncnn::BinaryOp* op_default = (ncnn::BinaryOp*)layer_default;
-
- fprintf_param_value(" 0=%d", op_type)
- fprintf_param_value(" 1=%d", with_scalar)
- fprintf_param_value(" 2=%e", b)
- }
- else if (layer->type == "Clip")
- {
- ncnn::Clip* op = (ncnn::Clip*)layer;
- ncnn::Clip* op_default = (ncnn::Clip*)layer_default;
-
- fprintf_param_value(" 0=%e", min)
- fprintf_param_value(" 1=%e", max)
- }
- else if (layer->type == "Concat")
- {
- ncnn::Concat* op = (ncnn::Concat*)layer;
- ncnn::Concat* op_default = (ncnn::Concat*)layer_default;
-
- fprintf_param_value(" 0=%d", axis)
- }
- else if (layer->type == "Convolution")
- {
- ncnn::Convolution* op = (ncnn::Convolution*)layer;
- ncnn::Convolution* op_default = (ncnn::Convolution*)layer_default;
-
- fprintf_param_value(" 0=%d", num_output)
- fprintf_param_value(" 1=%d", kernel_w)
- {
- if (op->kernel_h != op->kernel_w) fprintf(pp, " 11=%d", op->kernel_h);
- }
- fprintf_param_value(" 2=%d", dilation_w)
- {
- if (op->dilation_h != op->dilation_w) fprintf(pp, " 12=%d", op->dilation_h);
- }
- fprintf_param_value(" 3=%d", stride_w)
- {
- if (op->stride_h != op->stride_w) fprintf(pp, " 13=%d", op->stride_h);
- }
- fprintf_param_value(" 4=%d", pad_left)
- {
- if (op->pad_top != op->pad_left) fprintf(pp, " 14=%d", op->pad_top);
- }
- {
- if (op->pad_right != op->pad_left) fprintf(pp, " 15=%d", op->pad_right);
- }
- {
- if (op->pad_bottom != op->pad_top) fprintf(pp, " 16=%d", op->pad_bottom);
- }
- fprintf_param_value(" 18=%e", pad_value)
- fprintf_param_value(" 5=%d", bias_term)
- fprintf_param_value(" 6=%d", weight_data_size)
- fprintf_param_value(" 8=%d", int8_scale_term)
- fprintf_param_value(" 9=%d", activation_type)
- {
- if (!op->activation_params.empty()) fprintf_param_float_array(10, op->activation_params, pp);
- }
- fprintf_param_value(" 17=%d", impl_type)
-
- fwrite_weight_tag_data(0, op->weight_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "ConvolutionDepthWise")
- {
- ncnn::ConvolutionDepthWise* op = (ncnn::ConvolutionDepthWise*)layer;
- ncnn::ConvolutionDepthWise* op_default = (ncnn::ConvolutionDepthWise*)layer_default;
-
- fprintf_param_value(" 0=%d", num_output)
- fprintf_param_value(" 1=%d", kernel_w)
- {
- if (op->kernel_h != op->kernel_w) fprintf(pp, " 11=%d", op->kernel_h);
- }
- fprintf_param_value(" 2=%d", dilation_w)
- {
- if (op->dilation_h != op->dilation_w) fprintf(pp, " 12=%d", op->dilation_h);
- }
- fprintf_param_value(" 3=%d", stride_w)
- {
- if (op->stride_h != op->stride_w) fprintf(pp, " 13=%d", op->stride_h);
- }
- fprintf_param_value(" 4=%d", pad_left)
- {
- if (op->pad_top != op->pad_left) fprintf(pp, " 14=%d", op->pad_top);
- }
- {
- if (op->pad_right != op->pad_left) fprintf(pp, " 15=%d", op->pad_right);
- }
- {
- if (op->pad_bottom != op->pad_top) fprintf(pp, " 16=%d", op->pad_bottom);
- }
- fprintf_param_value(" 18=%e", pad_value)
- fprintf_param_value(" 5=%d", bias_term)
- fprintf_param_value(" 6=%d", weight_data_size)
- fprintf_param_value(" 7=%d", group)
- fprintf_param_value(" 8=%d", int8_scale_term)
- fprintf_param_value(" 9=%d", activation_type)
- {
- if (!op->activation_params.empty()) fprintf_param_float_array(10, op->activation_params, pp);
- }
-
- fwrite_weight_tag_data(0, op->weight_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "Crop")
- {
- ncnn::Crop* op = (ncnn::Crop*)layer;
- ncnn::Crop* op_default = (ncnn::Crop*)layer_default;
-
- fprintf_param_value(" 0=%d", woffset)
- fprintf_param_value(" 1=%d", hoffset)
- fprintf_param_value(" 2=%d", coffset)
- fprintf_param_value(" 3=%d", outw)
- fprintf_param_value(" 4=%d", outh)
- fprintf_param_value(" 5=%d", outc)
- fprintf_param_value(" 6=%d", woffset2)
- fprintf_param_value(" 7=%d", hoffset2)
- fprintf_param_value(" 8=%d", coffset2)
- {
- if (!op->starts.empty()) fprintf_param_int_array(9, op->starts, pp);
- }
- {
- if (!op->ends.empty()) fprintf_param_int_array(10, op->ends, pp);
- }
- {
- if (!op->axes.empty()) fprintf_param_int_array(11, op->axes, pp);
- }
- }
- else if (layer->type == "Deconvolution")
- {
- ncnn::Deconvolution* op = (ncnn::Deconvolution*)layer;
- ncnn::Deconvolution* op_default = (ncnn::Deconvolution*)layer_default;
-
- fprintf_param_value(" 0=%d", num_output)
- fprintf_param_value(" 1=%d", kernel_w)
- {
- if (op->kernel_h != op->kernel_w) fprintf(pp, " 11=%d", op->kernel_h);
- }
- fprintf_param_value(" 2=%d", dilation_w)
- {
- if (op->dilation_h != op->dilation_w) fprintf(pp, " 12=%d", op->dilation_h);
- }
- fprintf_param_value(" 3=%d", stride_w)
- {
- if (op->stride_h != op->stride_w) fprintf(pp, " 13=%d", op->stride_h);
- }
- fprintf_param_value(" 4=%d", pad_left)
- {
- if (op->pad_top != op->pad_left) fprintf(pp, " 14=%d", op->pad_top);
- }
- {
- if (op->pad_right != op->pad_left) fprintf(pp, " 15=%d", op->pad_right);
- }
- {
- if (op->pad_bottom != op->pad_top) fprintf(pp, " 16=%d", op->pad_bottom);
- }
- fprintf_param_value(" 18=%d", output_pad_right)
- {
- if (op->output_pad_bottom != op->output_pad_right) fprintf(pp, " 19=%d", op->output_pad_bottom);
- }
- fprintf_param_value(" 20=%d", output_w)
- {
- if (op->output_h != op->output_w) fprintf(pp, " 21=%d", op->output_h);
- }
- fprintf_param_value(" 5=%d", bias_term)
- fprintf_param_value(" 6=%d", weight_data_size)
- fprintf_param_value(" 9=%d", activation_type)
- {
- if (!op->activation_params.empty()) fprintf_param_float_array(10, op->activation_params, pp);
- }
-
- fwrite_weight_tag_data(0, op->weight_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "DeconvolutionDepthWise")
- {
- ncnn::DeconvolutionDepthWise* op = (ncnn::DeconvolutionDepthWise*)layer;
- ncnn::DeconvolutionDepthWise* op_default = (ncnn::DeconvolutionDepthWise*)layer_default;
-
- fprintf_param_value(" 0=%d", num_output)
- fprintf_param_value(" 1=%d", kernel_w)
- {
- if (op->kernel_h != op->kernel_w) fprintf(pp, " 11=%d", op->kernel_h);
- }
- fprintf_param_value(" 2=%d", dilation_w)
- {
- if (op->dilation_h != op->dilation_w) fprintf(pp, " 12=%d", op->dilation_h);
- }
- fprintf_param_value(" 3=%d", stride_w)
- {
- if (op->stride_h != op->stride_w) fprintf(pp, " 13=%d", op->stride_h);
- }
- fprintf_param_value(" 4=%d", pad_left)
- {
- if (op->pad_top != op->pad_left) fprintf(pp, " 14=%d", op->pad_top);
- }
- {
- if (op->pad_right != op->pad_left) fprintf(pp, " 15=%d", op->pad_right);
- }
- {
- if (op->pad_bottom != op->pad_top) fprintf(pp, " 16=%d", op->pad_bottom);
- }
- fprintf_param_value(" 18=%d", output_pad_right)
- {
- if (op->output_pad_bottom != op->output_pad_right) fprintf(pp, " 19=%d", op->output_pad_bottom);
- }
- fprintf_param_value(" 20=%d", output_w)
- {
- if (op->output_h != op->output_w) fprintf(pp, " 21=%d", op->output_h);
- }
- fprintf_param_value(" 5=%d", bias_term)
- fprintf_param_value(" 6=%d", weight_data_size)
- fprintf_param_value(" 7=%d", group)
- fprintf_param_value(" 9=%d", activation_type)
- {
- if (!op->activation_params.empty()) fprintf_param_float_array(10, op->activation_params, pp);
- }
-
- fwrite_weight_tag_data(0, op->weight_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "DetectionOutput")
- {
- ncnn::DetectionOutput* op = (ncnn::DetectionOutput*)layer;
- ncnn::DetectionOutput* op_default = (ncnn::DetectionOutput*)layer_default;
-
- fprintf_param_value(" 0=%d", num_class)
- fprintf_param_value(" 1=%e", nms_threshold)
- fprintf_param_value(" 2=%d", nms_top_k)
- fprintf_param_value(" 3=%d", keep_top_k)
- fprintf_param_value(" 4=%e", confidence_threshold)
- fprintf_param_value(" 5=%e", variances[0])
- fprintf_param_value(" 6=%e", variances[1])
- fprintf_param_value(" 7=%e", variances[2])
- fprintf_param_value(" 8=%e", variances[3])
- }
- else if (layer->type == "Dropout")
- {
- ncnn::Dropout* op = (ncnn::Dropout*)layer;
- ncnn::Dropout* op_default = (ncnn::Dropout*)layer_default;
-
- fprintf_param_value(" 0=%e", scale)
- }
- else if (layer->type == "Eltwise")
- {
- ncnn::Eltwise* op = (ncnn::Eltwise*)layer;
- ncnn::Eltwise* op_default = (ncnn::Eltwise*)layer_default;
-
- fprintf_param_value(" 0=%d", op_type)
- {
- if (!op->coeffs.empty()) fprintf_param_float_array(1, op->coeffs, pp);
- }
- }
- else if (layer->type == "ELU")
- {
- ncnn::ELU* op = (ncnn::ELU*)layer;
- ncnn::ELU* op_default = (ncnn::ELU*)layer_default;
-
- fprintf_param_value(" 0=%e", alpha)
- }
- else if (layer->type == "Exp")
- {
- ncnn::Exp* op = (ncnn::Exp*)layer;
- ncnn::Exp* op_default = (ncnn::Exp*)layer_default;
-
- fprintf_param_value(" 0=%e", base)
- fprintf_param_value(" 1=%e", scale)
- fprintf_param_value(" 2=%e", shift)
- }
- else if (layer->type == "ExpandDims")
- {
- ncnn::ExpandDims* op = (ncnn::ExpandDims*)layer;
- ncnn::ExpandDims* op_default = (ncnn::ExpandDims*)layer_default;
-
- fprintf_param_value(" 0=%d", expand_w)
- fprintf_param_value(" 1=%d", expand_h)
- fprintf_param_value(" 2=%d", expand_c)
- {
- if (!op->axes.empty()) fprintf_param_int_array(0, op->axes, pp);
- }
- }
- else if (layer->type == "HardSigmoid")
- {
- ncnn::HardSigmoid* op = (ncnn::HardSigmoid*)layer;
- ncnn::HardSigmoid* op_default = (ncnn::HardSigmoid*)layer_default;
-
- fprintf_param_value(" 0=%e", alpha)
- fprintf_param_value(" 1=%e", beta)
- }
- else if (layer->type == "HardSwish")
- {
- ncnn::HardSwish* op = (ncnn::HardSwish*)layer;
- ncnn::HardSwish* op_default = (ncnn::HardSwish*)layer_default;
-
- fprintf_param_value(" 0=%e", alpha)
- fprintf_param_value(" 1=%e", beta)
- }
- else if (layer->type == "InnerProduct")
- {
- ncnn::InnerProduct* op = (ncnn::InnerProduct*)layer;
- ncnn::InnerProduct* op_default = (ncnn::InnerProduct*)layer_default;
-
- fprintf_param_value(" 0=%d", num_output)
- fprintf_param_value(" 1=%d", bias_term)
- fprintf_param_value(" 2=%d", weight_data_size)
- fprintf_param_value(" 8=%d", int8_scale_term)
- fprintf_param_value(" 9=%d", activation_type)
- {
- if (!op->activation_params.empty()) fprintf_param_float_array(10, op->activation_params, pp);
- }
-
- fwrite_weight_tag_data(0, op->weight_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "Input")
- {
- ncnn::Input* op = (ncnn::Input*)layer;
- ncnn::Input* op_default = (ncnn::Input*)layer_default;
-
- fprintf_param_value(" 0=%d", w)
- fprintf_param_value(" 1=%d", h)
- fprintf_param_value(" 2=%d", c)
- }
- else if (layer->type == "InstanceNorm")
- {
- ncnn::InstanceNorm* op = (ncnn::InstanceNorm*)layer;
- ncnn::InstanceNorm* op_default = (ncnn::InstanceNorm*)layer_default;
-
- fprintf_param_value(" 0=%d", channels)
- fprintf_param_value(" 1=%e", eps)
-
- fwrite_weight_data(op->gamma_data, bp);
- fwrite_weight_data(op->beta_data, bp);
- }
- else if (layer->type == "Interp")
- {
- ncnn::Interp* op = (ncnn::Interp*)layer;
- ncnn::Interp* op_default = (ncnn::Interp*)layer_default;
-
- fprintf_param_value(" 0=%d", resize_type)
- fprintf_param_value(" 1=%e", height_scale)
- fprintf_param_value(" 2=%e", width_scale)
- fprintf_param_value(" 3=%d", output_height)
- fprintf_param_value(" 4=%d", output_width)
- }
- else if (layer->type == "Log")
- {
- ncnn::Log* op = (ncnn::Log*)layer;
- ncnn::Log* op_default = (ncnn::Log*)layer_default;
-
- fprintf_param_value(" 0=%e", base)
- fprintf_param_value(" 1=%e", scale)
- fprintf_param_value(" 2=%e", shift)
- }
- else if (layer->type == "LRN")
- {
- ncnn::LRN* op = (ncnn::LRN*)layer;
- ncnn::LRN* op_default = (ncnn::LRN*)layer_default;
-
- fprintf_param_value(" 0=%d", region_type)
- fprintf_param_value(" 1=%d", local_size)
- fprintf_param_value(" 2=%e", alpha)
- fprintf_param_value(" 3=%e", beta)
- fprintf_param_value(" 4=%e", bias)
- }
- else if (layer->type == "LSTM")
- {
- ncnn::LSTM* op = (ncnn::LSTM*)layer;
- ncnn::LSTM* op_default = (ncnn::LSTM*)layer_default;
-
- fprintf_param_value(" 0=%d", num_output)
- fprintf_param_value(" 1=%d", weight_data_size)
- fprintf_param_value(" 2=%d", direction)
-
- fwrite_weight_tag_data(0, op->weight_xc_data, bp);
- fwrite_weight_tag_data(0, op->bias_c_data, bp);
- fwrite_weight_tag_data(0, op->weight_hc_data, bp);
- }
- else if (layer->type == "MemoryData")
- {
- ncnn::MemoryData* op = (ncnn::MemoryData*)layer;
- ncnn::MemoryData* op_default = (ncnn::MemoryData*)layer_default;
-
- fprintf_param_value(" 0=%d", w)
- fprintf_param_value(" 1=%d", h)
- fprintf_param_value(" 2=%d", c)
- fwrite_weight_data(op->data, bp);
- }
- else if (layer->type == "MVN")
- {
- ncnn::MVN* op = (ncnn::MVN*)layer;
- ncnn::MVN* op_default = (ncnn::MVN*)layer_default;
-
- fprintf_param_value(" 0=%d", normalize_variance)
- fprintf_param_value(" 1=%d", across_channels)
- fprintf_param_value(" 2=%e", eps)
- }
- else if (layer->type == "Normalize")
- {
- ncnn::Normalize* op = (ncnn::Normalize*)layer;
- ncnn::Normalize* op_default = (ncnn::Normalize*)layer_default;
-
- fprintf_param_value(" 0=%d", across_spatial)
- fprintf_param_value(" 1=%d", channel_shared)
- fprintf_param_value(" 2=%e", eps)
- fprintf_param_value(" 3=%d", scale_data_size)
- fprintf_param_value(" 4=%d", across_channel)
- fprintf_param_value(" 9=%d", eps_mode)
-
- fwrite_weight_data(op->scale_data, bp);
- }
- else if (layer->type == "Padding")
- {
- ncnn::Padding* op = (ncnn::Padding*)layer;
- ncnn::Padding* op_default = (ncnn::Padding*)layer_default;
-
- fprintf_param_value(" 0=%d", top)
- fprintf_param_value(" 1=%d", bottom)
- fprintf_param_value(" 2=%d", left)
- fprintf_param_value(" 3=%d", right)
- fprintf_param_value(" 4=%d", type)
- fprintf_param_value(" 5=%e", value)
- fprintf_param_value(" 6=%d", per_channel_pad_data_size)
- fprintf_param_value(" 7=%d", front)
- fprintf_param_value(" 8=%d", behind)
- }
- else if (layer->type == "Permute")
- {
- ncnn::Permute* op = (ncnn::Permute*)layer;
- ncnn::Permute* op_default = (ncnn::Permute*)layer_default;
-
- fprintf_param_value(" 0=%d", order_type)
- }
- else if (layer->type == "PixelShuffle")
- {
- ncnn::PixelShuffle* op = (ncnn::PixelShuffle*)layer;
- ncnn::PixelShuffle* op_default = (ncnn::PixelShuffle*)layer_default;
-
- fprintf_param_value(" 0=%d", upscale_factor)
- }
- else if (layer->type == "Pooling")
- {
- ncnn::Pooling* op = (ncnn::Pooling*)layer;
- ncnn::Pooling* op_default = (ncnn::Pooling*)layer_default;
-
- fprintf_param_value(" 0=%d", pooling_type)
- fprintf_param_value(" 1=%d", kernel_w)
- {
- if (op->kernel_h != op->kernel_w) fprintf(pp, " 11=%d", op->kernel_h);
- }
- fprintf_param_value(" 2=%d", stride_w)
- {
- if (op->stride_h != op->stride_w) fprintf(pp, " 12=%d", op->stride_h);
- }
- fprintf_param_value(" 3=%d", pad_left)
- {
- if (op->pad_top != op->pad_left) fprintf(pp, " 13=%d", op->pad_top);
- }
- {
- if (op->pad_right != op->pad_left) fprintf(pp, " 14=%d", op->pad_right);
- }
- {
- if (op->pad_bottom != op->pad_top) fprintf(pp, " 15=%d", op->pad_bottom);
- }
- fprintf_param_value(" 4=%d", global_pooling)
- fprintf_param_value(" 5=%d", pad_mode)
- }
- else if (layer->type == "Power")
- {
- ncnn::Power* op = (ncnn::Power*)layer;
- ncnn::Power* op_default = (ncnn::Power*)layer_default;
-
- fprintf_param_value(" 0=%e", power)
- fprintf_param_value(" 1=%e", scale)
- fprintf_param_value(" 2=%e", shift)
- }
- else if (layer->type == "PReLU")
- {
- ncnn::PReLU* op = (ncnn::PReLU*)layer;
- ncnn::PReLU* op_default = (ncnn::PReLU*)layer_default;
-
- fprintf_param_value(" 0=%d", num_slope)
-
- fwrite_weight_data(op->slope_data, bp);
- }
- else if (layer->type == "PriorBox")
- {
- ncnn::PriorBox* op = (ncnn::PriorBox*)layer;
- ncnn::PriorBox* op_default = (ncnn::PriorBox*)layer_default;
-
- {
- if (!op->min_sizes.empty()) fprintf_param_float_array(0, op->min_sizes, pp);
- }
- {
- if (!op->max_sizes.empty()) fprintf_param_float_array(1, op->max_sizes, pp);
- }
- {
- if (!op->aspect_ratios.empty()) fprintf_param_float_array(2, op->aspect_ratios, pp);
- }
- fprintf_param_value(" 3=%e", variances[0])
- fprintf_param_value(" 4=%e", variances[1])
- fprintf_param_value(" 5=%e", variances[2])
- fprintf_param_value(" 6=%e", variances[3])
- fprintf_param_value(" 7=%d", flip)
- fprintf_param_value(" 8=%d", clip)
- fprintf_param_value(" 9=%d", image_width)
- fprintf_param_value(" 10=%d", image_height)
- fprintf_param_value(" 11=%e", step_width)
- fprintf_param_value(" 12=%e", step_height)
- fprintf_param_value(" 13=%e", offset)
- }
- else if (layer->type == "Proposal")
- {
- ncnn::Proposal* op = (ncnn::Proposal*)layer;
- ncnn::Proposal* op_default = (ncnn::Proposal*)layer_default;
-
- fprintf_param_value(" 0=%d", feat_stride)
- fprintf_param_value(" 1=%d", base_size)
- fprintf_param_value(" 2=%d", pre_nms_topN)
- fprintf_param_value(" 3=%d", after_nms_topN)
- fprintf_param_value(" 4=%e", nms_thresh)
- fprintf_param_value(" 5=%d", min_size)
- }
- else if (layer->type == "PSROIPooling")
- {
- ncnn::PSROIPooling* op = (ncnn::PSROIPooling*)layer;
- ncnn::PSROIPooling* op_default = (ncnn::PSROIPooling*)layer_default;
-
- fprintf_param_value(" 0=%d", pooled_width)
- fprintf_param_value(" 1=%d", pooled_height)
- fprintf_param_value(" 2=%e", spatial_scale)
- fprintf_param_value(" 3=%d", output_dim)
- }
- else if (layer->type == "Quantize")
- {
- ncnn::Quantize* op = (ncnn::Quantize*)layer;
- ncnn::Quantize* op_default = (ncnn::Quantize*)layer_default;
-
- fprintf_param_value(" 0=%e", scale)
- }
- else if (layer->type == "Reduction")
- {
- ncnn::Reduction* op = (ncnn::Reduction*)layer;
- ncnn::Reduction* op_default = (ncnn::Reduction*)layer_default;
-
- fprintf_param_value(" 0=%d", operation)
- fprintf_param_value(" 1=%d", reduce_all)
- fprintf_param_value(" 2=%e", coeff)
- {
- if (!op->axes.empty()) fprintf_param_int_array(3, op->axes, pp);
- }
- fprintf_param_value(" 4=%d", keepdims)
- }
- else if (layer->type == "ReLU")
- {
- ncnn::ReLU* op = (ncnn::ReLU*)layer;
- ncnn::ReLU* op_default = (ncnn::ReLU*)layer_default;
-
- fprintf_param_value(" 0=%e", slope)
- }
- else if (layer->type == "Reorg")
- {
- ncnn::Reorg* op = (ncnn::Reorg*)layer;
- ncnn::Reorg* op_default = (ncnn::Reorg*)layer_default;
-
- fprintf_param_value(" 0=%d", stride)
- }
- else if (layer->type == "Requantize")
- {
- ncnn::Requantize* op = (ncnn::Requantize*)layer;
- ncnn::Requantize* op_default = (ncnn::Requantize*)layer_default;
-
- fprintf_param_value(" 0=%e", scale_in)
- fprintf_param_value(" 1=%e", scale_out)
- fprintf_param_value(" 2=%d", bias_term)
- fprintf_param_value(" 3=%d", bias_data_size)
- fprintf_param_value(" 4=%d", fusion_relu)
- }
- else if (layer->type == "Reshape")
- {
- ncnn::Reshape* op = (ncnn::Reshape*)layer;
- ncnn::Reshape* op_default = (ncnn::Reshape*)layer_default;
-
- fprintf_param_value(" 0=%d", w)
- fprintf_param_value(" 1=%d", h)
- fprintf_param_value(" 2=%d", c)
- fprintf_param_value(" 3=%d", permute)
- }
- else if (layer->type == "ROIAlign")
- {
- ncnn::ROIAlign* op = (ncnn::ROIAlign*)layer;
- ncnn::ROIAlign* op_default = (ncnn::ROIAlign*)layer_default;
-
- fprintf_param_value(" 0=%d", pooled_width)
- fprintf_param_value(" 1=%d", pooled_height)
- fprintf_param_value(" 2=%e", spatial_scale)
- fprintf_param_value(" 3=%d", sampling_ratio)
- fprintf_param_value(" 4=%d", aligned)
- fprintf_param_value(" 5=%d", version)
- }
- else if (layer->type == "ROIPooling")
- {
- ncnn::ROIPooling* op = (ncnn::ROIPooling*)layer;
- ncnn::ROIPooling* op_default = (ncnn::ROIPooling*)layer_default;
-
- fprintf_param_value(" 0=%d", pooled_width)
- fprintf_param_value(" 1=%d", pooled_height)
- fprintf_param_value(" 2=%e", spatial_scale)
- }
- else if (layer->type == "Scale")
- {
- ncnn::Scale* op = (ncnn::Scale*)layer;
- ncnn::Scale* op_default = (ncnn::Scale*)layer_default;
-
- fprintf_param_value(" 0=%d", scale_data_size)
- fprintf_param_value(" 1=%d", bias_term)
-
- fwrite_weight_data(op->scale_data, bp);
- fwrite_weight_data(op->bias_data, bp);
- }
- else if (layer->type == "ShuffleChannel")
- {
- ncnn::ShuffleChannel* op = (ncnn::ShuffleChannel*)layer;
- ncnn::ShuffleChannel* op_default = (ncnn::ShuffleChannel*)layer_default;
-
- fprintf_param_value(" 0=%d", group)
- }
- else if (layer->type == "Slice")
- {
- ncnn::Slice* op = (ncnn::Slice*)layer;
- ncnn::Slice* op_default = (ncnn::Slice*)layer_default;
-
- {
- if (!op->slices.empty()) fprintf_param_int_array(0, op->slices, pp);
- }
- fprintf_param_value(" 1=%d", axis)
- }
- else if (layer->type == "Softmax")
- {
- ncnn::Softmax* op = (ncnn::Softmax*)layer;
- ncnn::Softmax* op_default = (ncnn::Softmax*)layer_default;
-
- fprintf_param_value(" 0=%d", axis)
-
- // HACK
- if (op->axis != 0)
- {
- int fixbug0 = 1;
- fprintf(pp, " 1=%d", fixbug0);
- }
- }
- else if (layer->type == "Squeeze")
- {
- ncnn::Squeeze* op = (ncnn::Squeeze*)layer;
- ncnn::Squeeze* op_default = (ncnn::Squeeze*)layer_default;
-
- fprintf_param_value(" 0=%d", squeeze_w)
- fprintf_param_value(" 1=%d", squeeze_h)
- fprintf_param_value(" 2=%d", squeeze_c)
- {
- if (!op->axes.empty()) fprintf_param_int_array(0, op->axes, pp);
- }
- }
- else if (layer->type == "Threshold")
- {
- ncnn::Threshold* op = (ncnn::Threshold*)layer;
- ncnn::Threshold* op_default = (ncnn::Threshold*)layer_default;
-
- fprintf_param_value(" 0=%e", threshold)
- }
- else if (layer->type == "UnaryOp")
- {
- ncnn::UnaryOp* op = (ncnn::UnaryOp*)layer;
- ncnn::UnaryOp* op_default = (ncnn::UnaryOp*)layer_default;
-
- fprintf_param_value(" 0=%d", op_type)
- }
- else if (layer->type == "YoloDetectionOutput")
- {
- ncnn::YoloDetectionOutput* op = (ncnn::YoloDetectionOutput*)layer;
- ncnn::YoloDetectionOutput* op_default = (ncnn::YoloDetectionOutput*)layer_default;
-
- fprintf_param_value(" 0=%d", num_class)
- fprintf_param_value(" 1=%d", num_box)
- fprintf_param_value(" 2=%e", confidence_threshold)
- fprintf_param_value(" 3=%e", nms_threshold)
- {
- if (!op->biases.empty()) fprintf_param_float_array(4, op->biases, pp);
- }
- }
- else if (layer->type == "Yolov3DetectionOutput")
- {
- ncnn::Yolov3DetectionOutput* op = (ncnn::Yolov3DetectionOutput*)layer;
- ncnn::Yolov3DetectionOutput* op_default = (ncnn::Yolov3DetectionOutput*)layer_default;
-
- fprintf_param_value(" 0=%d", num_class)
- fprintf_param_value(" 1=%d", num_box)
- fprintf_param_value(" 2=%e", confidence_threshold)
- fprintf_param_value(" 3=%e", nms_threshold)
- {
- if (!op->biases.empty()) fprintf_param_float_array(4, op->biases, pp);
- }
- {
- if (!op->mask.empty()) fprintf_param_int_array(5, op->mask, pp);
- }
- {
- if (!op->anchors_scale.empty()) fprintf_param_float_array(6, op->anchors_scale, pp);
- }
- }
-
- #undef fprintf_param_value
-
- fprintf(pp, "\n");
-
- delete layer_default;
- }
-
- fclose(pp);
- fclose(bp);
-
- return 0;
- }
-
- int main(int argc, char** argv)
- {
- #if defined(__aarch64__) && defined(LINUX)
- if (argc != 10)
- {
- fprintf(stderr, "usage: %s [inparam] [inbin] [outparam] [outbin] [flag] [dataname] [w] [h] [c]\n", argv[0]);
- return -1;
- }
- const char* dataname = argv[6];
- int inw = atoi(argv[7]);
- int inh = atoi(argv[8]);
- int inc = atoi(argv[9]);
- #else
- if (argc != 6)
- {
- fprintf(stderr, "usage: %s [inparam] [inbin] [outparam] [outbin] [flag]\n", argv[0]);
- return -1;
- }
- #endif // defined(__aarch64__) && defined(LINUX)
-
- const char* inparam = argv[1];
- const char* inbin = argv[2];
- const char* outparam = argv[3];
- const char* outbin = argv[4];
- int flag = atoi(argv[5]);
-
- NetOptimize optimizer;
-
- if (flag == 65536)
- {
- optimizer.storage_type = 1;
- }
- else
- {
- optimizer.storage_type = 0;
- }
-
- optimizer.load_param(inparam);
- if (strcmp(inbin, "null") == 0)
- {
- DataReaderFromEmpty dr;
- optimizer.load_model(dr);
- }
- else
- optimizer.load_model(inbin);
-
- #if defined(__aarch64__) && defined(LINUX)
- optimizer.find_fastest_fp32_conv(dataname, inw, inh, inc);
- #endif // defined(__aarch64__) && defined(LINUX)
- optimizer.fuse_batchnorm_scale();
- optimizer.fuse_convolution_batchnorm();
- optimizer.fuse_convolution_mul();
- optimizer.fuse_convolution_add();
- optimizer.fuse_convolutiondepthwise_batchnorm();
- optimizer.fuse_convolutiondepthwise_mul();
- optimizer.fuse_convolutiondepthwise_add();
- optimizer.fuse_deconvolution_batchnorm();
- optimizer.fuse_deconvolution_mul();
- optimizer.fuse_deconvolution_add();
- optimizer.fuse_deconvolutiondepthwise_batchnorm();
- optimizer.fuse_innerproduct_batchnorm();
- optimizer.fuse_innerproduct_add();
- optimizer.fuse_innerproduct_dropout();
- optimizer.fuse_convolution_activation();
- optimizer.fuse_convolutiondepthwise_activation();
- optimizer.fuse_deconvolution_activation();
- optimizer.fuse_deconvolutiondepthwise_activation();
- optimizer.fuse_innerproduct_activation();
- optimizer.fuse_memorydata_binaryop();
- optimizer.fuse_binaryop_eltwise();
-
- optimizer.eliminate_dropout();
- optimizer.eliminate_pooling1x1();
- optimizer.eliminate_noop();
- optimizer.eliminate_flatten_after_global_pooling();
- optimizer.eliminate_reshape_after_global_pooling();
- optimizer.eliminate_reshape_before_binaryop();
-
- optimizer.replace_convolution_with_innerproduct_after_global_pooling();
- optimizer.replace_convolution_with_innerproduct_after_innerproduct();
-
- optimizer.eliminate_flatten_after_innerproduct();
- optimizer.eliminate_orphaned_memorydata();
-
- optimizer.shape_inference();
-
- optimizer.save(outparam, outbin);
-
- return 0;
- }
|