|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800 |
- // Tencent is pleased to support the open source community by making ncnn available.
- //
- // Copyright (C) 2020 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.
-
- #include <stdio.h>
-
- #include <map>
- #include <set>
-
- #include <mlir/Dialect/StandardOps/IR/Ops.h>
- #include <mlir/IR/PatternMatch.h>
- #include <mlir/Parser.h>
- #include <mlir/Pass/PassManager.h>
- #include <mlir/Transforms/Passes.h>
-
- #include "tf_dialect.h"
- #include "ncnn_dialect.h"
-
- static std::string get_mlir_value_uniq_id(const mlir::Value& value)
- {
- if (value.getLoc().isa<mlir::FileLineColLoc>())
- {
- mlir::FileLineColLoc floc = value.getLoc().cast<mlir::FileLineColLoc>();
-
- return std::to_string(floc.getLine()) + ":" + std::to_string(floc.getColumn());
- }
-
- if (value.getLoc().isa<mlir::FusedLoc>())
- {
- mlir::FileLineColLoc floc = value.getLoc().cast<mlir::FusedLoc>().getLocations().front().cast<mlir::FileLineColLoc>();
-
- return std::to_string(floc.getLine()) + ":" + std::to_string(floc.getColumn());
- }
-
- fprintf(stderr, "unhandled get_mlir_value_uniq_id\n");
- return std::string();
- }
-
- static std::string get_attr_s(const mlir::Attribute& attr)
- {
- std::string s;
-
- if (attr.isa<mlir::StringAttr>())
- {
- mlir::StringAttr a = attr.cast<mlir::StringAttr>();
-
- s = a.getValue().str();
- }
-
- return s;
- }
-
- static int get_attr_b(const mlir::Attribute& attr)
- {
- int i;
-
- if (attr.isa<mlir::BoolAttr>())
- {
- mlir::BoolAttr a = attr.cast<mlir::BoolAttr>();
-
- i = a.getValue() ? 1 : 0;
- }
- else
- {
- fprintf(stderr, "not BoolAttr\n");
- }
-
- return i;
- }
-
- static int get_attr_i(const mlir::Attribute& attr)
- {
- int i;
-
- if (attr.isa<mlir::IntegerAttr>())
- {
- mlir::IntegerAttr a = attr.cast<mlir::IntegerAttr>();
-
- i = (int)a.getInt();
- }
- else
- {
- fprintf(stderr, "not IntegerAttr\n");
- }
-
- return i;
- }
-
- static float get_attr_f(const mlir::Attribute& attr)
- {
- float f;
-
- if (attr.isa<mlir::FloatAttr>())
- {
- mlir::FloatAttr a = attr.cast<mlir::FloatAttr>();
-
- f = (float)a.getValueAsDouble();
- }
- else
- {
- fprintf(stderr, "not FloatAttr\n");
- }
-
- return f;
- }
-
- static std::vector<int> get_attr_ai(const mlir::Attribute& attr)
- {
- std::vector<int> v;
-
- if (attr.isa<mlir::ArrayAttr>())
- {
- mlir::ArrayAttr a = attr.cast<mlir::ArrayAttr>();
-
- const int array_size = a.getValue().size();
-
- v.resize(array_size);
- for (int j = 0; j < array_size; j++)
- {
- if (a[j].isa<mlir::IntegerAttr>())
- {
- int64_t ii = a[j].cast<mlir::IntegerAttr>().getInt();
- v[j] = std::max(std::min(ii, (int64_t)INT_MAX), (int64_t)INT_MIN);
- }
- }
- }
- else if (attr.isa<mlir::DenseIntElementsAttr>())
- {
- mlir::DenseIntElementsAttr ai = attr.cast<mlir::DenseIntElementsAttr>();
-
- for (auto ii : ai.getIntValues())
- {
- v.push_back(ii.getSExtValue());
- }
- }
- else
- {
- fprintf(stderr, "not ArrayAttr or DenseIntElementsAttr\n");
- }
-
- return v;
- }
-
- static std::vector<float> get_attr_af(const mlir::Attribute& attr)
- {
- std::vector<float> v;
-
- if (attr.isa<mlir::ArrayAttr>())
- {
- mlir::ArrayAttr a = attr.cast<mlir::ArrayAttr>();
-
- const int array_size = a.getValue().size();
-
- v.resize(array_size);
- for (int j = 0; j < array_size; j++)
- {
- if (a[j].isa<mlir::FloatAttr>())
- {
- double ff = a[j].cast<mlir::FloatAttr>().getValueAsDouble();
- v[j] = ff;
- }
- }
- }
- else if (attr.isa<mlir::DenseFPElementsAttr>())
- {
- mlir::DenseFPElementsAttr af = attr.cast<mlir::DenseFPElementsAttr>();
-
- for (auto ff : af.getFloatValues())
- {
- v.push_back(ff.convertToFloat());
- }
- }
- else
- {
- fprintf(stderr, "not ArrayAttr or DenseFPElementsAttr\n");
- }
-
- return v;
- }
-
- static std::string get_operation_attr_s(const mlir::Operation& _operation, const char* key)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- mlir::Attribute attr = operation.getAttr(key);
-
- return get_attr_s(attr);
- }
-
- static int get_operation_attr_b(const mlir::Operation& _operation, const char* key)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- mlir::Attribute attr = operation.getAttr(key);
-
- return get_attr_b(attr);
- }
-
- static int get_operation_attr_i(const mlir::Operation& _operation, const char* key)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- mlir::Attribute attr = operation.getAttr(key);
-
- return get_attr_i(attr);
- }
-
- static float get_operation_attr_f(const mlir::Operation& _operation, const char* key)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- mlir::Attribute attr = operation.getAttr(key);
-
- return get_attr_f(attr);
- }
-
- static std::vector<int> get_operation_attr_ai(const mlir::Operation& _operation, const char* key)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- mlir::Attribute attr = operation.getAttr(key);
-
- return get_attr_ai(attr);
- }
-
- static std::vector<float> get_operation_attr_af(const mlir::Operation& _operation, const char* key)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- mlir::Attribute attr = operation.getAttr(key);
-
- return get_attr_af(attr);
- }
-
- int main(int argc, char** argv)
- {
- if (!(argc == 2 || argc == 4))
- {
- fprintf(stderr, "Usage: %s [mlir] [ncnnparam] [ncnnbin]\n", argv[0]);
- return -1;
- }
-
- const char* mlirpath = argv[1];
- const char* ncnn_prototxt = argc == 4 ? argv[2] : "ncnn.param";
- const char* ncnn_modelbin = argc == 4 ? argv[3] : "ncnn.bin";
-
- mlir::MLIRContext context;
-
- context.getOrLoadDialect<mlir::StandardOpsDialect>();
- context.getOrLoadDialect<mlir::TF::TensorFlowDialect>();
- context.getOrLoadDialect<mlir::ncnn::NCNNDialect>();
-
- mlir::OwningModuleRef m = mlir::parseSourceFile(mlirpath, &context);
-
- mlir::PassManager pm(&context);
- // Apply any generic pass manager command line options and run the pipeline.
- applyPassManagerCLOptions(pm);
-
- // Add a run of the canonicalizer to optimize the mlir module.
- pm.addNestedPass<mlir::FuncOp>(mlir::createCanonicalizerPass());
- if (pm.run(*m).failed())
- {
- fprintf(stderr, "canonicalizer pass failed\n");
- return -1;
- }
-
- // m->dump();
-
- mlir::FuncOp main_fn = m->lookupSymbol<mlir::FuncOp>("main");
-
- auto& bb = main_fn.getBlocks().front();
-
- // bb.dump();
-
- FILE* pp = fopen(ncnn_prototxt, "wb");
- FILE* bp = fopen(ncnn_modelbin, "wb");
-
- // node reference
- std::map<std::string, int> node_reference;
-
- // weight node and weight reshape node
- std::map<std::string, mlir::Attribute> weights;
-
- fprintf(pp, "7767517\n");
-
- const mlir::Block::OpListType& operations = bb.getOperations();
-
- int node_count = operations.size();
-
- // global definition line
- // [layer count] [blob count]
- std::set<std::string> blob_names;
- for (const mlir::Operation& _operation : operations)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- std::string op = operation.getName().getStringRef().str();
-
- int num_input = (int)operation.getNumOperands();
- int num_output = (int)operation.getNumResults();
-
- if (op == "tf.Const")
- {
- // weight
- std::string output_name = get_mlir_value_uniq_id(operation.getResult(0));
- weights[output_name] = operation.getAttr("value");
- }
-
- for (int j = 0; j < num_input; j++)
- {
- std::string input_name = get_mlir_value_uniq_id(operation.getOperand(j));
-
- blob_names.insert(input_name);
-
- if (node_reference.find(input_name) == node_reference.end())
- {
- node_reference[input_name] = 1;
- }
- else
- {
- node_reference[input_name] = node_reference[input_name] + 1;
- }
- }
-
- for (int j = 0; j < num_output; j++)
- {
- std::string output_name = get_mlir_value_uniq_id(operation.getResult(j));
-
- blob_names.insert(output_name);
-
- node_reference[output_name] = 0;
- }
- }
-
- // reduce common const weight node_reference
- for (const mlir::Operation& _operation : operations)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- std::string op = operation.getName().getStringRef().str();
-
- if (op == "ncnn.KerasConv2D")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- node_reference[weight_name] -= 1;
- node_reference[bias_name] -= 1;
- }
- else if (op == "ncnn.KerasDense")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- node_reference[weight_name] -= 1;
- node_reference[bias_name] -= 1;
- }
- else if (op == "ncnn.KerasBatchNorm")
- {
- std::string gamma_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- node_reference[gamma_name] -= 1;
- node_reference[bias_name] -= 1;
- }
- else if (op == "ncnn.InstanceNormAffine")
- {
- std::string gamma_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- node_reference[gamma_name] -= 1;
- node_reference[bias_name] -= 1;
- }
- else if (op == "tf.ConcatV2")
- {
- std::string axis_name = get_mlir_value_uniq_id(operation.getOperand(operation.getNumOperands() - 1));
- node_reference[axis_name] -= 1;
- }
- else if (op == "tf.Conv2D")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.Conv2DBackpropInput")
- {
- std::string output_shape_name = get_mlir_value_uniq_id(operation.getOperand(0));
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[output_shape_name] -= 1;
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.DepthwiseConv2dNative")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.MatMul")
- {
- int transpose_a = get_operation_attr_b(operation, "transpose_a");
- int transpose_b = get_operation_attr_b(operation, "transpose_b");
-
- if (transpose_a == 0 && transpose_b == 1)
- {
- // InnerProduct-like A * B + C
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- }
- else if (op == "tf.Mean")
- {
- std::string reduction_indices_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[reduction_indices_name] -= 1;
- }
- else if (op == "tf.Pad")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.Reshape")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.ResizeBilinear")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.ResizeNearestNeighbor")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- node_reference[weight_name] -= 1;
- }
- else if (op == "tf.StridedSlice")
- {
- std::string begin_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string end_name = get_mlir_value_uniq_id(operation.getOperand(2));
- std::string strides_name = get_mlir_value_uniq_id(operation.getOperand(3));
- node_reference[begin_name] -= 1;
- node_reference[end_name] -= 1;
- node_reference[strides_name] -= 1;
- }
- }
-
- // count all weight node with zero reference
- int zero_reference_weight_node_count = 0;
- for (std::map<std::string, mlir::Attribute>::iterator it = weights.begin(); it != weights.end(); it++)
- {
- const std::string& input_name = it->first;
-
- int refcount = node_reference[input_name];
- if (refcount == 0)
- zero_reference_weight_node_count++;
- }
-
- // remove node_reference entry with reference equals to one
- int split_layer_count = 0;
- int splitncnn_blob_count = 0;
- // split node reference
- std::map<std::string, int> split_node_reference;
- for (std::map<std::string, int>::iterator it = node_reference.begin(); it != node_reference.end(); it++)
- {
- if (it->second > 1)
- {
- split_layer_count++;
- splitncnn_blob_count += it->second;
-
- split_node_reference[it->first] = it->second;
- }
- }
-
- fprintf(pp, "%lu %lu\n", node_count - zero_reference_weight_node_count + split_layer_count, blob_names.size() - zero_reference_weight_node_count + splitncnn_blob_count);
-
- int internal_split = 0;
-
- // place MemoryData next
- for (std::map<std::string, mlir::Attribute>::iterator weight_it = weights.begin(); weight_it != weights.end(); weight_it++)
- {
- const std::string& input_name = weight_it->first;
-
- int refcount = node_reference[input_name];
- if (refcount == 0)
- {
- continue;
- }
-
- fprintf(pp, "%-16s %-24s 0 1 %s", "MemoryData", input_name.c_str(), input_name.c_str());
-
- const mlir::Attribute& M = weights[input_name];
-
- llvm::ArrayRef<int64_t> shape = M.getType().cast<mlir::RankedTensorType>().getShape();
-
- // c wc hwc
- if (shape.size() == 0)
- {
- // scalar
- fprintf(pp, " 0=1");
- }
- else if (shape.size() == 1)
- {
- fprintf(pp, " 0=%d", (int)shape[0]);
- }
- else if (shape.size() == 2)
- {
- fprintf(pp, " 0=%d", (int)shape[1]);
- fprintf(pp, " 1=%d", (int)shape[0]);
- }
- else if (shape.size() == 3)
- {
- fprintf(pp, " 0=%d", (int)shape[1]);
- fprintf(pp, " 1=%d", (int)shape[0]);
- fprintf(pp, " 2=%d", (int)shape[2]);
- }
-
- fprintf(pp, "\n");
-
- std::vector<float> v = get_attr_af(M);
-
- if (shape.size() != 3)
- {
- fwrite(v.data(), sizeof(float), v.size(), bp);
- }
- else
- {
- int w = (int)shape[1];
- int h = (int)shape[0];
- int c = (int)shape[2];
-
- float tmp;
- // h-w-c to c-h-w
- for (int p = 0; p < c; p++)
- {
- for (int i = 0; i < h; i++)
- {
- for (int j = 0; j < w; j++)
- {
- tmp = v[i * w * c + j * c + p];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
- }
-
- if (refcount <= 1)
- {
- continue;
- }
-
- char splitname[256];
- sprintf(splitname, "splitncnn_%d", internal_split);
- fprintf(pp, "%-16s %-24s %d %d", "Split", splitname, 1, refcount);
-
- fprintf(pp, " %s", input_name.c_str());
-
- for (int k = 0; k < refcount; k++)
- {
- fprintf(pp, " %s_splitncnn_%d", input_name.c_str(), k);
- }
- fprintf(pp, "\n");
-
- internal_split++;
- }
-
- // model op
- int g_opid = 0;
-
- for (const mlir::Operation& _operation : operations)
- {
- mlir::Operation& operation = const_cast<mlir::Operation&>(_operation);
-
- std::string op = operation.getName().getStringRef().str();
-
- int opid = g_opid++;
-
- int num_input = (int)operation.getNumOperands();
- int num_output = (int)operation.getNumResults();
-
- for (int i = 0; i < (int)operation.getNumOperands(); i++)
- {
- std::string input_name = get_mlir_value_uniq_id(operation.getOperand(i));
-
- // check weight
- if (weights.find(input_name) != weights.end() && node_reference[input_name] == 0)
- {
- num_input--;
- }
- }
-
- if (op == "std.return")
- {
- fprintf(pp, "%-16s", "Noop");
- }
- else if (op == "ncnn.BinaryOp")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "ncnn.KerasConv2D")
- {
- fprintf(pp, "%-16s", "Convolution");
- }
- else if (op == "ncnn.KerasDense")
- {
- fprintf(pp, "%-16s", "InnerProduct");
- }
- else if (op == "ncnn.KerasBatchNorm")
- {
- fprintf(pp, "%-16s", "BatchNorm");
- }
- else if (op == "ncnn.InstanceNorm")
- {
- fprintf(pp, "%-16s", "InstanceNorm");
- }
- else if (op == "ncnn.InstanceNormAffine")
- {
- fprintf(pp, "%-16s", "InstanceNorm");
- }
- else if (op == "tf.AddN")
- {
- fprintf(pp, "%-16s", "Eltwise");
- }
- else if (op == "tf.AddV2")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "tf.AvgPool")
- {
- fprintf(pp, "%-16s", "Pooling");
- }
- else if (op == "tf.BiasAdd")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "tf.ConcatV2")
- {
- fprintf(pp, "%-16s", "Concat");
- }
- else if (op == "tf.Const")
- {
- continue;
- }
- else if (op == "tf.Conv2D")
- {
- fprintf(pp, "%-16s", "Convolution");
- }
- else if (op == "tf.Conv2DBackpropInput")
- {
- fprintf(pp, "%-16s", "Deconvolution");
- }
- else if (op == "tf.DepthToSpace")
- {
- fprintf(pp, "%-16s", "PixelShuffle");
- }
- else if (op == "tf.DepthwiseConv2dNative")
- {
- fprintf(pp, "%-16s", "ConvolutionDepthWise");
- }
- else if (op == "tf.Identity")
- {
- fprintf(pp, "%-16s", "Noop");
- }
- else if (op == "tf.LeakyRelu")
- {
- fprintf(pp, "%-16s", "ReLU");
- }
- else if (op == "tf.MatMul")
- {
- int transpose_a = get_operation_attr_b(operation, "transpose_a");
- int transpose_b = get_operation_attr_b(operation, "transpose_b");
-
- if (transpose_a == 0 && transpose_b == 1)
- {
- // InnerProduct-like A * B + C
- fprintf(pp, "%-16s", "InnerProduct");
- }
- else
- {
- fprintf(pp, "%-16s", "Gemm");
- }
- }
- else if (op == "tf.Maximum")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "tf.MaxPool")
- {
- fprintf(pp, "%-16s", "Pooling");
- }
- else if (op == "tf.Mean")
- {
- std::string reduction_indices_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& R = weights[reduction_indices_name];
-
- std::vector<int> v = get_attr_ai(R);
-
- int keep_dims = get_operation_attr_b(operation, "keep_dims");
-
- if (keep_dims == 0 && v.size() == 2 && v[0] == 1 && v[1] == 2)
- {
- // global avg pooling style nhwc -> nc
- fprintf(pp, "%-16s", "Pooling");
- }
- else
- {
- fprintf(stderr, "tf.Mean is not global avg pooling\n");
- fprintf(pp, "%-16s", "Reduction");
- }
- }
- else if (op == "tf.Minimum")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "tf.Mul")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "tf.Pad")
- {
- fprintf(pp, "%-16s", "Padding");
- }
- else if (op == "tf.Placeholder")
- {
- fprintf(pp, "%-16s", "Input");
- }
- else if (op == "tf.Relu")
- {
- fprintf(pp, "%-16s", "ReLU");
- }
- else if (op == "tf.Relu6")
- {
- fprintf(pp, "%-16s", "Clip");
- }
- else if (op == "tf.Reshape")
- {
- fprintf(pp, "%-16s", "Reshape");
- }
- else if (op == "tf.ResizeBilinear")
- {
- fprintf(pp, "%-16s", "Interp");
- }
- else if (op == "tf.ResizeNearestNeighbor")
- {
- fprintf(pp, "%-16s", "Interp");
- }
- else if (op == "tf.Sigmoid")
- {
- fprintf(pp, "%-16s", "Sigmoid");
- }
- else if (op == "tf.Softmax")
- {
- fprintf(pp, "%-16s", "Softmax");
- }
- else if (op == "tf.SpaceToDepth")
- {
- fprintf(pp, "%-16s", "Reorg");
- }
- else if (op == "tf.StridedSlice")
- {
- fprintf(pp, "%-16s", "Crop");
- }
- else if (op == "tf.Sub")
- {
- fprintf(pp, "%-16s", "BinaryOp");
- }
- else if (op == "tf.Tanh")
- {
- fprintf(pp, "%-16s", "TanH");
- }
- else
- {
- // TODO
- fprintf(stderr, "%s not supported yet!\n", op.c_str());
- fprintf(pp, "%-16s", op.c_str());
- }
-
- char opid_name[64];
- sprintf(opid_name, "op_%d", opid);
-
- fprintf(pp, " %-24s %d %d", opid_name, num_input, num_output);
-
- for (int i = 0; i < (int)operation.getNumOperands(); i++)
- {
- std::string input_name = get_mlir_value_uniq_id(operation.getOperand(i));
-
- // check weight
- if (weights.find(input_name) != weights.end() && node_reference[input_name] == 0)
- {
- continue;
- }
-
- if (split_node_reference.find(input_name) != split_node_reference.end())
- {
- int refidx = split_node_reference[input_name] - 1;
- split_node_reference[input_name] = refidx;
-
- char splitsuffix[256];
- sprintf(splitsuffix, "_splitncnn_%d", refidx);
- input_name = input_name + splitsuffix;
- }
-
- fprintf(pp, " %s", input_name.c_str());
- }
-
- for (int i = 0; i < num_output; i++)
- {
- std::string output_name = get_mlir_value_uniq_id(operation.getResult(i));
- fprintf(pp, " %s", output_name.c_str());
- }
-
- if (op == "std.return")
- {
- }
- else if (op == "ncnn.BinaryOp")
- {
- int op_type = get_operation_attr_i(operation, "op_type");
- int with_scalar = get_operation_attr_i(operation, "with_scalar");
- float b = get_operation_attr_f(operation, "b");
-
- fprintf(pp, " 0=%d", op_type);
- fprintf(pp, " 1=%d", with_scalar);
- fprintf(pp, " 2=%e", b);
- }
- else if (op == "ncnn.KerasConv2D")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- const mlir::Attribute& W = weights[weight_name];
- const mlir::Attribute& B = weights[bias_name];
-
- llvm::ArrayRef<int64_t> shape = W.getType().cast<mlir::RankedTensorType>().getShape();
-
- // assert(shape.size() == 4)
-
- // kh-kw-inch-outch
- int kernel_size_h = shape[0];
- int kernel_size_w = shape[1];
- int num_input = shape[2];
- int num_output = shape[3];
- int weight_data_size = kernel_size_h * kernel_size_w * num_input * num_output;
-
- fprintf(pp, " 0=%d", num_output);
- fprintf(pp, " 1=%d", kernel_size_w);
- fprintf(pp, " 11=%d", kernel_size_h);
- fprintf(pp, " 6=%d", weight_data_size);
-
- std::vector<int> dilations = get_operation_attr_ai(operation, "dilations");
- std::vector<int> strides = get_operation_attr_ai(operation, "strides");
- std::string padding = get_operation_attr_s(operation, "padding");
-
- if (dilations.size() == 4)
- {
- fprintf(pp, " 2=%d", dilations[2]);
- fprintf(pp, " 12=%d", dilations[1]);
- }
-
- if (strides.size() == 4)
- {
- fprintf(pp, " 3=%d", strides[2]);
- fprintf(pp, " 13=%d", strides[1]);
- }
-
- if (padding == "EXPLICIT")
- {
- // nhwc = [[0, 0], [pad_top, pad_bottom], [pad_left, pad_right], [0, 0]]
- std::vector<int> explicit_paddings = get_operation_attr_ai(operation, "explicit_paddings");
-
- fprintf(pp, " 4=%d", explicit_paddings[4]);
- fprintf(pp, " 15=%d", explicit_paddings[5]);
- fprintf(pp, " 14=%d", explicit_paddings[2]);
- fprintf(pp, " 16=%d", explicit_paddings[3]);
- }
- else if (padding == "VALID")
- {
- fprintf(pp, " 4=%d", 0);
- }
- else if (padding == "SAME")
- {
- fprintf(pp, " 4=%d", -233);
- }
-
- fprintf(pp, " 5=1"); // bias_term
-
- std::vector<float> v = get_attr_af(W);
- std::vector<float> bv = get_attr_af(B);
-
- // reorder h-w-i-o to o-i-h-w
- {
- int quantize_tag = 0;
- fwrite(&quantize_tag, sizeof(int), 1, bp);
-
- float tmp;
- for (int p = 0; p < num_output; p++)
- {
- for (int q = 0; q < num_input; q++)
- {
- for (int i = 0; i < kernel_size_h; i++)
- {
- for (int j = 0; j < kernel_size_w; j++)
- {
- tmp = v[i * kernel_size_w * num_input * num_output + j * num_input * num_output + q * num_output + p];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
- }
- }
-
- fwrite(bv.data(), sizeof(float), bv.size(), bp);
- }
- else if (op == "ncnn.KerasDense")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- const mlir::Attribute& W = weights[weight_name];
- const mlir::Attribute& B = weights[bias_name];
-
- llvm::ArrayRef<int64_t> shape = W.getType().cast<mlir::RankedTensorType>().getShape();
-
- // assert(shape.size() == 2)
-
- // inch-outch
- int num_input = shape[0];
- int num_output = shape[1];
- int weight_data_size = shape[0] * shape[1];
-
- fprintf(pp, " 0=%d", num_output);
- fprintf(pp, " 1=1"); // bias_term
- fprintf(pp, " 2=%d", weight_data_size);
-
- std::vector<float> v = get_attr_af(W);
- std::vector<float> bv = get_attr_af(B);
-
- // reorder i-o to o-i
- {
- int quantize_tag = 0;
- fwrite(&quantize_tag, sizeof(int), 1, bp);
-
- float tmp;
- for (int p = 0; p < num_output; p++)
- {
- for (int q = 0; q < num_input; q++)
- {
- tmp = v[q * num_output + p];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
-
- fwrite(bv.data(), sizeof(float), bv.size(), bp);
- }
- else if (op == "ncnn.KerasBatchNorm")
- {
- std::string gamma_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string bias_name = get_mlir_value_uniq_id(operation.getOperand(2));
- const mlir::Attribute& W = weights[gamma_name];
- const mlir::Attribute& B = weights[bias_name];
-
- std::vector<float> v = get_attr_af(W);
- std::vector<float> bv = get_attr_af(B);
-
- int channels = v.size();
-
- fprintf(pp, " 0=%d", channels);
-
- std::vector<float> mean(channels, 0.f);
- std::vector<float> var(channels, 1.f);
-
- fwrite(v.data(), sizeof(float), channels, bp);
- fwrite(mean.data(), sizeof(float), channels, bp);
- fwrite(var.data(), sizeof(float), channels, bp);
- fwrite(bv.data(), sizeof(float), channels, bp);
- }
- else if (op == "ncnn.InstanceNorm")
- {
- float eps = get_operation_attr_f(operation, "epsilon");
-
- fprintf(pp, " 0=0"); // channels
- fprintf(pp, " 1=%e", eps);
- fprintf(pp, " 2=0"); // affine
- }
- else if (op == "ncnn.InstanceNormAffine")
- {
- float eps = get_operation_attr_f(operation, "epsilon");
-
- std::string gamma_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string beta_name = get_mlir_value_uniq_id(operation.getOperand(2));
- const mlir::Attribute& G = weights[gamma_name];
- const mlir::Attribute& B = weights[beta_name];
-
- std::vector<float> gv = get_attr_af(G);
- std::vector<float> bv = get_attr_af(B);
-
- int channels = gv.size();
-
- fprintf(pp, " 0=%d", channels);
- fprintf(pp, " 1=%e", eps);
- fprintf(pp, " 2=1"); // affine
-
- fwrite(gv.data(), sizeof(float), gv.size(), bp);
- fwrite(bv.data(), sizeof(float), bv.size(), bp);
- }
- else if (op == "tf.AddN")
- {
- int op_type = 1;
- fprintf(pp, " 0=%d", op_type);
- }
- else if (op == "tf.AddV2")
- {
- int op_type = 0;
- fprintf(pp, " 0=%d", op_type);
- }
- else if (op == "tf.AvgPool")
- {
- std::vector<int> ksize = get_operation_attr_ai(operation, "ksize");
- std::vector<int> strides = get_operation_attr_ai(operation, "strides");
- std::string padding = get_operation_attr_s(operation, "padding");
-
- fprintf(pp, " 0=1"); // avg pool
-
- if (ksize.size() == 4)
- {
- fprintf(pp, " 1=%d", ksize[2]);
- fprintf(pp, " 11=%d", ksize[1]);
- }
-
- if (strides.size() == 4)
- {
- fprintf(pp, " 2=%d", strides[2]);
- fprintf(pp, " 12=%d", strides[1]);
- }
-
- int pad_mode = 1;
- if (padding == "VALID")
- {
- pad_mode = 1;
- }
- else if (padding == "SAME")
- {
- pad_mode = 2;
- }
-
- fprintf(pp, " 5=%d", pad_mode);
- }
- else if (op == "tf.ConcatV2")
- {
- std::string axis_name = get_mlir_value_uniq_id(operation.getOperand(operation.getNumOperands() - 1));
- const mlir::Attribute& A = weights[axis_name];
-
- int axis = get_attr_ai(A)[0];
-
- // axis nhc to nhw
- // axis nhwc to nchw
- int dims = operation.getOperand(0).getType().cast<mlir::RankedTensorType>().getShape().size();
-
- if (dims == 2 && axis == 1)
- {
- axis = 0;
- }
- if (dims == 3 && axis == 1)
- {
- axis = 1;
- }
- if (dims == 3 && axis == 2)
- {
- axis = 0;
- }
- if (dims == 4 && axis == 1)
- {
- axis = 1;
- }
- if (dims == 4 && axis == 2)
- {
- axis = 2;
- }
- if (dims == 4 && axis == 3)
- {
- axis = 0;
- }
-
- fprintf(pp, " 0=%d", axis);
- }
- else if (op == "tf.Const")
- {
- // never reach here
- }
- else if (op == "tf.Conv2D")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& W = weights[weight_name];
-
- llvm::ArrayRef<int64_t> shape = W.getType().cast<mlir::RankedTensorType>().getShape();
-
- // assert(shape.size() == 4)
-
- // kh-kw-inch-outch
- int kernel_size_h = shape[0];
- int kernel_size_w = shape[1];
- int num_input = shape[2];
- int num_output = shape[3];
- int weight_data_size = kernel_size_h * kernel_size_w * num_input * num_output;
-
- fprintf(pp, " 0=%d", num_output);
- fprintf(pp, " 1=%d", kernel_size_w);
- fprintf(pp, " 11=%d", kernel_size_h);
- fprintf(pp, " 6=%d", weight_data_size);
-
- std::vector<int> dilations = get_operation_attr_ai(operation, "dilations");
- std::vector<int> strides = get_operation_attr_ai(operation, "strides");
- std::string padding = get_operation_attr_s(operation, "padding");
-
- if (dilations.size() == 4)
- {
- fprintf(pp, " 2=%d", dilations[2]);
- fprintf(pp, " 12=%d", dilations[1]);
- }
-
- if (strides.size() == 4)
- {
- fprintf(pp, " 3=%d", strides[2]);
- fprintf(pp, " 13=%d", strides[1]);
- }
-
- if (padding == "EXPLICIT")
- {
- // nhwc = [[0, 0], [pad_top, pad_bottom], [pad_left, pad_right], [0, 0]]
- std::vector<int> explicit_paddings = get_operation_attr_ai(operation, "explicit_paddings");
-
- fprintf(pp, " 4=%d", explicit_paddings[4]);
- fprintf(pp, " 15=%d", explicit_paddings[5]);
- fprintf(pp, " 14=%d", explicit_paddings[2]);
- fprintf(pp, " 16=%d", explicit_paddings[3]);
- }
- else if (padding == "VALID")
- {
- fprintf(pp, " 4=%d", 0);
- }
- else if (padding == "SAME")
- {
- fprintf(pp, " 4=%d", -233);
- }
-
- std::vector<float> v = get_attr_af(W);
-
- // reorder h-w-i-o to o-i-h-w
- {
- int quantize_tag = 0;
- fwrite(&quantize_tag, sizeof(int), 1, bp);
-
- float tmp;
- for (int p = 0; p < num_output; p++)
- {
- for (int q = 0; q < num_input; q++)
- {
- for (int i = 0; i < kernel_size_h; i++)
- {
- for (int j = 0; j < kernel_size_w; j++)
- {
- tmp = v[i * kernel_size_w * num_input * num_output + j * num_input * num_output + q * num_output + p];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
- }
- }
- }
- else if (op == "tf.Conv2DBackpropInput")
- {
- std::string output_shape_name = get_mlir_value_uniq_id(operation.getOperand(0));
- const std::vector<int> output_shape = get_attr_ai(weights[output_shape_name]);
-
- // assert(output_shape.size() == 4)
-
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& W = weights[weight_name];
-
- llvm::ArrayRef<int64_t> shape = W.getType().cast<mlir::RankedTensorType>().getShape();
-
- // assert(shape.size() == 4)
-
- // kh-kw-outch-inch
- int kernel_size_h = shape[0];
- int kernel_size_w = shape[1];
- int num_output = shape[2];
- int num_input = shape[3];
- int weight_data_size = kernel_size_h * kernel_size_w * num_input * num_output;
-
- fprintf(pp, " 0=%d", num_output);
- fprintf(pp, " 1=%d", kernel_size_w);
- fprintf(pp, " 11=%d", kernel_size_h);
- fprintf(pp, " 6=%d", weight_data_size);
-
- std::vector<int> dilations = get_operation_attr_ai(operation, "dilations");
- std::vector<int> strides = get_operation_attr_ai(operation, "strides");
- std::string padding = get_operation_attr_s(operation, "padding");
-
- if (dilations.size() == 4)
- {
- fprintf(pp, " 2=%d", dilations[2]);
- fprintf(pp, " 12=%d", dilations[1]);
- }
-
- if (strides.size() == 4)
- {
- fprintf(pp, " 3=%d", strides[2]);
- fprintf(pp, " 13=%d", strides[1]);
- }
-
- if (padding == "EXPLICIT")
- {
- // nhwc = [[0, 0], [pad_top, pad_bottom], [pad_left, pad_right], [0, 0]]
- std::vector<int> explicit_paddings = get_operation_attr_ai(operation, "explicit_paddings");
-
- fprintf(pp, " 4=%d", explicit_paddings[4]);
- fprintf(pp, " 15=%d", explicit_paddings[5]);
- fprintf(pp, " 14=%d", explicit_paddings[2]);
- fprintf(pp, " 16=%d", explicit_paddings[3]);
- }
- else if (padding == "VALID")
- {
- fprintf(pp, " 4=%d", 0);
- }
- else if (padding == "SAME")
- {
- fprintf(pp, " 4=%d", -233);
-
- fprintf(pp, " 20=%d", output_shape[2]);
- fprintf(pp, " 21=%d", output_shape[1]);
- }
-
- std::vector<float> v = get_attr_af(W);
-
- // reorder h-w-o-i to o-i-h-w
- {
- int quantize_tag = 0;
- fwrite(&quantize_tag, sizeof(int), 1, bp);
-
- float tmp;
- for (int p = 0; p < num_output; p++)
- {
- for (int q = 0; q < num_input; q++)
- {
- for (int i = 0; i < kernel_size_h; i++)
- {
- for (int j = 0; j < kernel_size_w; j++)
- {
- tmp = v[i * kernel_size_w * num_output * num_input + j * num_output * num_input + p * num_input + q];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
- }
- }
- }
- else if (op == "tf.DepthToSpace")
- {
- int block_size = get_operation_attr_i(operation, "block_size");
- fprintf(pp, " 0=%d", block_size);
- fprintf(pp, " 1=1"); // mode
- }
- else if (op == "tf.DepthwiseConv2dNative")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& W = weights[weight_name];
-
- llvm::ArrayRef<int64_t> shape = W.getType().cast<mlir::RankedTensorType>().getShape();
-
- // assert(shape.size() == 4)
-
- // kh-kw-inch-cm
- int kernel_size_h = shape[0];
- int kernel_size_w = shape[1];
- int num_input = shape[2];
- int channel_multiplier = shape[3];
-
- int num_output = num_input * channel_multiplier;
- int group = num_input;
-
- int weight_data_size = kernel_size_h * kernel_size_w * num_input * channel_multiplier;
-
- fprintf(pp, " 0=%d", num_output);
- fprintf(pp, " 1=%d", kernel_size_w);
- fprintf(pp, " 11=%d", kernel_size_h);
- fprintf(pp, " 6=%d", weight_data_size);
- fprintf(pp, " 7=%d", group);
-
- std::vector<int> dilations = get_operation_attr_ai(operation, "dilations");
- std::vector<int> strides = get_operation_attr_ai(operation, "strides");
- std::string padding = get_operation_attr_s(operation, "padding");
-
- if (dilations.size() == 4)
- {
- fprintf(pp, " 2=%d", dilations[2]);
- fprintf(pp, " 12=%d", dilations[1]);
- }
-
- if (strides.size() == 4)
- {
- fprintf(pp, " 3=%d", strides[2]);
- fprintf(pp, " 13=%d", strides[1]);
- }
-
- if (padding == "EXPLICIT")
- {
- // nhwc = [[0, 0], [pad_top, pad_bottom], [pad_left, pad_right], [0, 0]]
- std::vector<int> explicit_paddings = get_operation_attr_ai(operation, "explicit_paddings");
-
- fprintf(pp, " 4=%d", explicit_paddings[4]);
- fprintf(pp, " 15=%d", explicit_paddings[5]);
- fprintf(pp, " 14=%d", explicit_paddings[2]);
- fprintf(pp, " 16=%d", explicit_paddings[3]);
- }
- else if (padding == "VALID")
- {
- fprintf(pp, " 4=%d", 0);
- }
- else if (padding == "SAME")
- {
- fprintf(pp, " 4=%d", -233);
- }
-
- std::vector<float> v = get_attr_af(W);
-
- // reorder h-w-i-cm to i-cm-h-w
- {
- int quantize_tag = 0;
- fwrite(&quantize_tag, sizeof(int), 1, bp);
-
- float tmp;
- for (int p = 0; p < num_input; p++)
- {
- for (int q = 0; q < channel_multiplier; q++)
- {
- for (int i = 0; i < kernel_size_h; i++)
- {
- for (int j = 0; j < kernel_size_w; j++)
- {
- tmp = v[i * kernel_size_w * channel_multiplier * num_input + j * channel_multiplier * num_input + p * channel_multiplier + q];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
- }
- }
- }
- else if (op == "tf.Identity")
- {
- }
- else if (op == "tf.LeakyRelu")
- {
- float alpha = get_operation_attr_f(operation, "alpha");
-
- fprintf(pp, " 0=%e", alpha);
- }
- else if (op == "tf.MatMul")
- {
- int transpose_a = get_operation_attr_b(operation, "transpose_a");
- int transpose_b = get_operation_attr_b(operation, "transpose_b");
-
- if (transpose_a == 0 && transpose_b == 1)
- {
- // InnerProduct-like A * B + C
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& W = weights[weight_name];
-
- llvm::ArrayRef<int64_t> shape = W.getType().cast<mlir::RankedTensorType>().getShape();
-
- // assert(shape.size() == 2)
-
- // inch-outch
- int num_input = shape[0];
- int num_output = shape[1];
- int weight_data_size = shape[0] * shape[1];
-
- fprintf(pp, " 0=%d", num_output);
- fprintf(pp, " 2=%d", weight_data_size);
-
- std::vector<float> v = get_attr_af(W);
-
- // reorder i-o to o-i
- {
- int quantize_tag = 0;
- fwrite(&quantize_tag, sizeof(int), 1, bp);
-
- float tmp;
- for (int p = 0; p < num_output; p++)
- {
- for (int q = 0; q < num_input; q++)
- {
- tmp = v[q * num_output + p];
- fwrite(&tmp, sizeof(float), 1, bp);
- }
- }
- }
- }
- else
- {
- // gemm
- fprintf(pp, " 0=1.0"); // alpha
- fprintf(pp, " 1=1.0"); // beta
- fprintf(pp, " 2=%d", transpose_a);
- fprintf(pp, " 3=%d", transpose_b);
- }
- }
- else if (op == "tf.Maximum")
- {
- int op_type = 4;
- fprintf(pp, " 0=%d", op_type);
- }
- else if (op == "tf.MaxPool")
- {
- std::vector<int> ksize = get_operation_attr_ai(operation, "ksize");
- std::vector<int> strides = get_operation_attr_ai(operation, "strides");
- std::string padding = get_operation_attr_s(operation, "padding");
-
- fprintf(pp, " 0=0"); // max pool
-
- if (ksize.size() == 4)
- {
- fprintf(pp, " 1=%d", ksize[2]);
- fprintf(pp, " 11=%d", ksize[1]);
- }
-
- if (strides.size() == 4)
- {
- fprintf(pp, " 2=%d", strides[2]);
- fprintf(pp, " 12=%d", strides[1]);
- }
-
- int pad_mode = 1;
- if (padding == "VALID")
- {
- pad_mode = 1;
- }
- else if (padding == "SAME")
- {
- pad_mode = 2;
- }
-
- fprintf(pp, " 5=%d", pad_mode);
- }
- else if (op == "tf.Mean")
- {
- std::string reduction_indices_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& R = weights[reduction_indices_name];
-
- std::vector<int> v = get_attr_ai(R);
-
- int keep_dims = get_operation_attr_b(operation, "keep_dims");
-
- if (keep_dims == 0 && v.size() == 2 && v[0] == 1 && v[1] == 2)
- {
- // global avg pooling style nhwc -> nc
- int pool = 1;
- int global_pool = 1;
-
- fprintf(pp, " 0=%d", pool);
- fprintf(pp, " 4=%d", global_pool);
- }
- else
- {
- // TODO
- }
- }
- else if (op == "tf.Minimum")
- {
- int op_type = 5;
- fprintf(pp, " 0=%d", op_type);
- }
- else if (op == "tf.Mul")
- {
- int op_type = 2;
- fprintf(pp, " 0=%d", op_type);
- }
- else if (op == "tf.Pad")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& P = weights[weight_name];
-
- std::vector<int> v = get_attr_ai(P);
-
- // nhwc = [[0, 0], [pad_top, pad_bottom], [pad_left, pad_right], [0, 0]]
- fprintf(pp, " 0=%d", v[2]);
- fprintf(pp, " 1=%d", v[3]);
- fprintf(pp, " 2=%d", v[4]);
- fprintf(pp, " 3=%d", v[5]);
- }
- else if (op == "tf.Placeholder")
- {
- }
- else if (op == "tf.Relu")
- {
- }
- else if (op == "tf.Relu6")
- {
- float min = 0.f;
- float max = 6.f;
- fprintf(pp, " 0=%e", min);
- fprintf(pp, " 1=%e", max);
- }
- else if (op == "tf.Reshape")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& S = weights[weight_name];
-
- std::vector<int> v = get_attr_ai(S);
-
- int size = v.size();
-
- // n h w c
- // n h c
- // n c
- if (size == 4)
- {
- fprintf(pp, " 0=%d 1=%d 2=%d", v[2], v[1], v[3]);
- }
- if (size == 3)
- {
- fprintf(pp, " 0=%d 1=%d 2=-233", v[1], v[2]);
- }
- if (size == 2)
- {
- fprintf(pp, " 0=%d 1=-233 2=-233", v[1]);
- }
-
- // FIXME may not always be the case
- fprintf(pp, " 3=1");
- }
- else if (op == "tf.ResizeBilinear")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& P = weights[weight_name];
-
- std::vector<int> size = get_attr_ai(P);
-
- int align_corners = get_operation_attr_b(operation, "align_corners");
- int half_pixel_centers = get_operation_attr_b(operation, "half_pixel_centers");
- if (!(align_corners == 0 && half_pixel_centers == 1))
- {
- fprintf(stderr, "Unsupported ResizeBilinear align_corners %d half_pixel_centers %d !\n", align_corners, half_pixel_centers);
- }
-
- fprintf(pp, " 0=2"); // bilinear
- fprintf(pp, " 3=%d 4=%d", size[1], size[0]);
- }
- else if (op == "tf.ResizeNearestNeighbor")
- {
- std::string weight_name = get_mlir_value_uniq_id(operation.getOperand(1));
- const mlir::Attribute& P = weights[weight_name];
-
- std::vector<int> size = get_attr_ai(P);
-
- int align_corners = get_operation_attr_b(operation, "align_corners");
- int half_pixel_centers = get_operation_attr_b(operation, "half_pixel_centers");
- if (!(align_corners == 0 && half_pixel_centers == 1))
- {
- fprintf(stderr, "Unsupported ResizeNearestNeighbor align_corners %d half_pixel_centers %d !\n", align_corners, half_pixel_centers);
- }
-
- fprintf(pp, " 0=1"); // nearest
- fprintf(pp, " 3=%d 4=%d", size[1], size[0]);
- }
- else if (op == "tf.Sigmoid")
- {
- }
- else if (op == "tf.Softmax")
- {
- }
- else if (op == "tf.SpaceToDepth")
- {
- int block_size = get_operation_attr_i(operation, "block_size");
- fprintf(pp, " 0=%d", block_size);
- fprintf(pp, " 1=1"); // mode
- }
- else if (op == "tf.StridedSlice")
- {
- std::string begin_name = get_mlir_value_uniq_id(operation.getOperand(1));
- std::string end_name = get_mlir_value_uniq_id(operation.getOperand(2));
- std::string strides_name = get_mlir_value_uniq_id(operation.getOperand(3));
- const mlir::Attribute& B = weights[begin_name];
- const mlir::Attribute& E = weights[end_name];
- const mlir::Attribute& S = weights[strides_name];
-
- std::vector<int> begin = get_attr_ai(B);
- std::vector<int> end = get_attr_ai(E);
- std::vector<int> strides = get_attr_ai(S);
-
- int begin_mask = get_operation_attr_i(operation, "begin_mask");
- int end_mask = get_operation_attr_i(operation, "end_mask");
- int ellipsis_mask = get_operation_attr_i(operation, "ellipsis_mask");
- int new_axis_mask = get_operation_attr_i(operation, "new_axis_mask");
- int shrink_axis_mask = get_operation_attr_i(operation, "shrink_axis_mask");
-
- int dims = strides.size();
-
- // assert strides == 1
- for (int i = 0; i < dims; i++)
- {
- if (strides[i] != 1)
- fprintf(stderr, "Unsupported StridedSlice strides !\n");
- }
-
- for (int i = 0; i < dims; i++)
- {
- // TODO strides[i] < 0
- if (begin_mask & (1 << i))
- {
- begin[i] = 0;
- }
- if (end_mask & (1 << i))
- {
- end[i] = -233;
- }
- if (ellipsis_mask & (1 << i))
- {
- begin[i] = 0;
- end[i] = -233;
- }
- }
-
- if (new_axis_mask)
- {
- fprintf(stderr, "Unsupported StridedSlice new_axis_mask !\n");
- }
-
- if (shrink_axis_mask)
- {
- fprintf(stderr, "Unsupported StridedSlice shrink_axis_mask !\n");
- }
-
- // n h w c
- // n h c
- // n c
- if (dims == 4)
- {
- fprintf(pp, " -23309=3,%d,%d,%d", begin[3], begin[1], begin[2]);
- fprintf(pp, " -23310=3,%d,%d,%d", end[3], end[1], end[2]);
- }
- if (dims == 3)
- {
- fprintf(pp, " -23309=2,%d,%d", begin[2], begin[1]);
- fprintf(pp, " -23310=2,%d,%d", end[2], end[1]);
- }
- if (dims == 2)
- {
- fprintf(pp, " -23309=1,%d", begin[1]);
- fprintf(pp, " -23310=1,%d", end[1]);
- }
- }
- else if (op == "tf.Sub")
- {
- int op_type = 1;
- fprintf(pp, " 0=%d", op_type);
- }
- else if (op == "tf.Tanh")
- {
- }
-
- #if 0
- for (const mlir::NamedAttribute& attr : operation.getAttrs())
- {
- const mlir::Identifier& identifier = attr.first;
- const mlir::Attribute& attr = attr.second;
-
- fprintf(pp, " %s=", identifier.c_str());
-
- if (attr.isa<mlir::AffineMapAttr>())
- {
- fprintf(pp, "AffineMap");
- }
- if (attr.isa<mlir::ArrayAttr>())
- {
- // fprintf(pp, "Array");
- mlir::ArrayAttr a = attr.cast<mlir::ArrayAttr>();
- int array_size = a.getValue().size();
- for (int t=0; t<array_size; t++)
- {
- if (a[t].isa<mlir::IntegerAttr>())
- {
- int64_t ii = a[t].cast<mlir::IntegerAttr>().getInt();
- fprintf(pp, "%lld,", ii);
- }
- }
- }
- if (attr.isa<mlir::BoolAttr>())
- {
- // fprintf(pp, "Bool");
- mlir::BoolAttr a = attr.cast<mlir::BoolAttr>();
- fprintf(pp, "%d", a.getValue() ? 1 : 0);
- }
- if (attr.isa<mlir::DictionaryAttr>())
- {
- fprintf(pp, "Dictionary");
- }
- if (attr.isa<mlir::FloatAttr>())
- {
- fprintf(pp, "Float");
- }
- if (attr.isa<mlir::IntegerAttr>())
- {
- fprintf(pp, "Integer");
- }
- if (attr.isa<mlir::IntegerSetAttr>())
- {
- fprintf(pp, "IntegerSet");
- }
- if (attr.isa<mlir::OpaqueAttr>())
- {
- fprintf(pp, "Opaque");
- }
- if (attr.isa<mlir::StringAttr>())
- {
- // fprintf(pp, "String");
- mlir::StringAttr s = attr.cast<mlir::StringAttr>();
- fprintf(pp, "%s", s.getValue().empty() ? "" : s.getValue().data());
- }
- if (attr.isa<mlir::SymbolRefAttr>())
- {
- fprintf(pp, "SymbolRef");
- }
- if (attr.isa<mlir::FlatSymbolRefAttr>())
- {
- fprintf(pp, "FlatSymbolRef");
- }
- if (attr.isa<mlir::TypeAttr>())
- {
- fprintf(pp, "Type");
- }
- if (attr.isa<mlir::UnitAttr>())
- {
- fprintf(pp, "Unit");
- }
- if (attr.isa<mlir::ElementsAttr>())
- {
- fprintf(pp, "Elements");
- }
- if (attr.isa<mlir::DenseElementsAttr>())
- {
- fprintf(pp, "DenseElements");
- }
- if (attr.isa<mlir::DenseFPElementsAttr>())
- {
- fprintf(pp, "DenseFPElements");
- }
- if (attr.isa<mlir::DenseIntElementsAttr>())
- {
- fprintf(pp, "DenseIntElements");
- }
- if (attr.isa<mlir::OpaqueElementsAttr>())
- {
- fprintf(pp, "OpaqueElements");
- }
- if (attr.isa<mlir::SparseElementsAttr>())
- {
- fprintf(pp, "SparseElements");
- }
- if (attr.isa<mlir::SplatElementsAttr>())
- {
- fprintf(pp, "SplatElements");
- }
-
- }
- #endif
-
- fprintf(pp, "\n");
-
- for (int j = 0; j < num_output; j++)
- {
- std::string output_name = get_mlir_value_uniq_id(operation.getResult(j));
- if (node_reference.find(output_name) != node_reference.end())
- {
- int refcount = node_reference[output_name];
- if (refcount > 1)
- {
- char splitname[256];
- sprintf(splitname, "splitncnn_%d", internal_split);
- fprintf(pp, "%-16s %-24s %d %d", "Split", splitname, 1, refcount);
-
- fprintf(pp, " %s", output_name.c_str());
-
- for (int k = 0; k < refcount; k++)
- {
- fprintf(pp, " %s_splitncnn_%d", output_name.c_str(), k);
- }
- fprintf(pp, "\n");
-
- internal_split++;
- }
- }
- }
- }
-
- fclose(pp);
- fclose(bp);
-
- return 0;
- }
|