| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549 |
- var xmodel = xmodel || {};
- var protobuf = protobuf || require('./protobuf');
- xmodel.ModelFactory = class {
- match(context) {
- const tags = context.tags('pb');
- if (tags.get(5) === 2) {
- return 'xmodel.pb';
- }
- return undefined;
- }
- open(context) {
- return context.require('./xmodel-proto').then(() => {
- let graph = null;
- try {
- xmodel.proto = protobuf.get('xmodel').serial_v2;
- const stream = context.stream;
- const reader = protobuf.BinaryReader.open(stream);
- graph = xmodel.proto.Graph.decode(reader);
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new xmodel.Error('File format is not serial_v2.Graph (' + message.replace(/\.$/, '') + ').');
- }
- return new xmodel.Model(graph);
- });
- }
- };
- xmodel.Model = class {
- constructor(graph) {
- this._name = graph.graph_name || '';
- this._format = 'xmodel';
- this._producer = graph && graph.graph_attr && graph.graph_attr.origin && graph.graph_attr.origin.string_value ? graph.graph_attr.origin.string_value : '';
- this._graphs = [ new xmodel.Graph(graph) ];
- }
- get name() {
- return this._name;
- }
- get format() {
- return this._format;
- }
- get producer() {
- return this._producer;
- }
- get graphs() {
- return this._graphs;
- }
- };
- xmodel.Graph = class {
- constructor(graph) {
- const metadata = new xmodel.Metadata(graph.op_defs);
- this._inputs = [];
- this._outputs = [];
- const counts = new Map();
- for (const op_node of graph.op_node) {
- for (const arg of op_node.args) {
- for (const arg_op of arg.arg_ops) {
- counts.set(arg_op, counts.has(arg_op) ? counts.get(arg_op) + 1 : 1);
- }
- }
- }
- const args = new Map();
- const arg = (name, node, initializer) => {
- if (!args.has(name)) {
- args.set(name, new xmodel.Argument(name, node, initializer));
- }
- return args.get(name);
- };
- const nodes = [];
- for (const node of graph.op_node) {
- if (node.args.length === 0) {
- if (node.op_type === 'data' || node.op_type === 'data-fix') {
- const argument = arg(node.op_name, node);
- this._inputs.push(new xmodel.Parameter(node.op_name, [ argument ]));
- continue;
- }
- }
- if (node.args.length === 0 && counts.get(node.op_name) === 1) {
- if (node.op_type === 'const' || node.op_type === 'const-fix') {
- arg(node.op_name, node, true);
- continue;
- }
- }
- arg(node.op_name, node);
- nodes.push(node);
- }
- this._nodes = nodes.map((node) => new xmodel.Node(metadata, node, arg));
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- get nodes() {
- return this._nodes;
- }
- };
- xmodel.Parameter = class {
- constructor(name, args) {
- this._name = name;
- this._arguments = args;
- }
- get name() {
- return this._name;
- }
- get visible() {
- return true;
- }
- get arguments() {
- return this._arguments;
- }
- };
- xmodel.Argument = class {
- constructor(name, node, initializer) {
- if (typeof name !== 'string') {
- throw new xmodel.Error("Invalid argument identifier '" + JSON.stringify(name) + "'.");
- }
- this._name = name;
- if (node) {
- const tensor = node.output_tensor;
- if (tensor && tensor.tensor_attr && tensor.data_type) {
- if (initializer) {
- this._initializer = new xmodel.Tensor(node);
- }
- else {
- this._type = new xmodel.TensorType(tensor);
- }
- }
- }
- }
- get name() {
- return this._name;
- }
- get type() {
- if (this._initializer) {
- return this._initializer.type;
- }
- return this._type;
- }
- get initializer() {
- return this._initializer;
- }
- };
- xmodel.Node = class {
- constructor(metadata, op_node, arg) {
- this._name = op_node.op_name || '';
- this._type = metadata.type(op_node.op_type);
- this._inputs = [];
- this._outputs = [];
- this._attributes = [];
- this._chain = [];
- if (op_node.op_attr) {
- for (const entry of Object.entries(op_node.op_attr)) {
- const name = entry[0];
- if (name === 'device') {
- this._device = entry[1].string_value;
- continue;
- }
- if (name === 'workload') {
- continue;
- }
- if (name.startsWith('quant_in_') || name.startsWith('quant_out_')) {
- continue;
- }
- const value = xmodel.Utility.attribute(entry[1]);
- if (name === 'nonlinear' && value.value && value.value !== 'NONE' && value.value !== 0) {
- let activation = value.value;
- if (typeof activation === 'string') {
- activation = activation.toLowerCase();
- }
- else if (Number.isInteger(activation) && activation < 5) {
- activation = [ 'none', 'relu', 'prelu', 'leakyrelu', 'relu6' ][activation];
- }
- else {
- activation = JSON.stringify(activation);
- }
- this._chain.push(new xmodel.Node(metadata, { op_type: activation }, arg));
- continue;
- }
- this._attributes.push(new xmodel.Attribute(metadata.attribute(this._type, name), name, value));
- }
- }
- if (op_node.args) {
- for (const input of op_node.args) {
- const args = input.arg_ops.map((arg_op) => arg(arg_op));
- this._inputs.push(new xmodel.Parameter(input.arg_name, args));
- }
- }
- if (op_node.op_name) {
- this._outputs.push(new xmodel.Parameter('output', [ arg(op_node.op_name) ]));
- }
- }
- get type() {
- return this._type;
- }
- get name() {
- return this._name;
- }
- get device() {
- return this._device;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- get attributes() {
- return this._attributes;
- }
- get chain() {
- return this._chain;
- }
- };
- xmodel.Attribute = class {
- constructor(metadata, name, attribute) {
- this._name = name;
- this._type = attribute.type;
- this._value = attribute.value;
- if (metadata) {
- if (metadata.default !== undefined) {
- if (metadata.default === this._value) {
- this._visible = false;
- }
- if (Array.isArray(metadata.default) && Array.isArray(this._value) &&
- metadata.default.length === this._value.length && metadata.default.every((value, index) => value === this._value[index])) {
- this._visible = false;
- }
- }
- }
- }
- get name() {
- return this._name;
- }
- get type() {
- return this._type;
- }
- get value() {
- return this._value;
- }
- get visible() {
- return this._visible == false ? false : true;
- }
- };
- xmodel.TensorType = class {
- constructor(tensor) {
- switch (tensor.data_type) {
- case 0: this._dataType = 'int'; break;
- case 1: this._dataType = 'uint'; break;
- case 2: this._dataType = 'xint'; break;
- case 3: this._dataType = 'xuint'; break;
- case 4: this._dataType = 'float'; break;
- default: throw new xmodel.Error('...');
- }
- this._dataType += tensor.tensor_bit_width.toString();
- this._shape = new xmodel.TensorShape(tensor.tensor_dim);
- if (tensor.tensor_attr) {
- const attr = {};
- for (const entry of Object.entries(tensor.tensor_attr)) {
- const key = entry[0];
- const value = entry[1][entry[1].value];
- if (key.startsWith('quant_')) {
- continue;
- }
- attr[key] = value;
- const denotation = [];
- if (attr.fix_point !== undefined) {
- denotation.push(attr.fix_point.toString() + '.');
- }
- if (attr.round_mode !== undefined) {
- denotation.push(attr.round_mode.toString());
- }
- if (denotation.length > 0) {
- this._denotation = denotation.join(' ');
- }
- }
- }
- }
- get dataType() {
- return this._dataType;
- }
- get shape() {
- return this._shape;
- }
- get denotation() {
- return this._denotation;
- }
- toString() {
- return (this.dataType || '?') + this._shape.toString();
- }
- };
- xmodel.TensorShape = class {
- constructor(dimensions) {
- this._dimensions = Array.from(dimensions);
- }
- get dimensions() {
- return this._dimensions;
- }
- toString() {
- if (!this._dimensions || this._dimensions.length == 0) {
- return '';
- }
- return '[' + this._dimensions.map((dimension) => dimension.toString()).join(',') + ']';
- }
- };
- xmodel.Tensor = class {
- constructor(node) {
- this._type = new xmodel.TensorType(node.output_tensor);
- this._kind = node.op_type;
- }
- get kind() {
- return this._kind;
- }
- get type() {
- return this._type;
- }
- get state() {
- return this._context().state || null;
- }
- get value() {
- const context = this._context();
- if (context.state) {
- return null;
- }
- context.limit = Number.MAX_SAFE_INTEGER;
- return this._decode(context, 0);
- }
- toString() {
- const context = this._context();
- if (context.state) {
- return '';
- }
- context.limit = 10000;
- const value = this._decode(context, 0);
- return JSON.stringify(value, null, 4);
- }
- _context() {
- const context = {};
- context.index = 0;
- context.count = 0;
- context.state = 'Tensor data not implemented.';
- return context;
- }
- _decode(/* context, dimension */) {
- return [];
- }
- };
- xmodel.Utility = class {
- static attribute(attr_value) {
- const key = attr_value.value;
- const type = key.replace(/_value$/, '');
- const value = attr_value[attr_value.value];
- switch (type) {
- case 'bool': return { type: 'boolean', value: value };
- case 'int32': return { type: 'int32', value: value };
- case 'int32_vec': return { type: 'int32[]', value: value.value };
- case 'int64': return { type: 'int64', value: value };
- case 'uint64': return { type: 'uint64', value: value };
- case 'float': return { type: 'float32', value: value };
- case 'float_vec': return { type: 'float32[]', value: value.value };
- case 'double': return { type: 'float64', value: value };
- case 'string': return { type: 'string', value: value };
- case 'string_vec': return { type: 'string[]', value: value.value };
- case 'bytes': return { type: 'byte[]', value: value.value };
- case 'map_string_2_int32': return { type: 'map<string,int32>', value: value.value };
- default: throw new xmodel.Error("Unsupported attribute type '" + type + "'.");
- }
- }
- };
- xmodel.Metadata = class {
- constructor(op_defs) {
- this._types = new Map();
- this._attributes = new Map();
- const categories = new Map([
- [ 'avgpool2d', 'Pool' ],
- [ 'batchnorm', 'Normalization' ],
- [ 'celu', 'Activation' ],
- [ 'concat-fix', 'Tensor' ],
- [ 'concat', 'Tensor' ],
- [ 'conv2d-fix', 'Layer' ],
- [ 'conv2d', 'Layer' ],
- [ 'depthwise-conv2d-fix', 'Layer' ],
- [ 'depthwise-conv2d', 'Layer' ],
- [ 'elu', 'Activation' ],
- [ 'fix', 'Quantization' ],
- [ 'fix2float', 'Quantization' ],
- [ 'flatten', 'Shape' ],
- [ 'float2fix', 'Quantization' ],
- [ 'gelu', 'Activation' ],
- [ 'hard-sigmoid', 'Activation' ],
- [ 'hard-sigmoid-fix', 'Activation' ],
- [ 'hard-swish', 'Activation' ],
- [ 'hard-tanh', 'Activation' ],
- [ 'identity', 'Control' ],
- [ 'inner-product', 'Layer' ],
- [ 'l2_normalize', 'Normalization' ],
- [ 'leaky-relu', 'Activation' ],
- [ 'leakyrelu', 'Activation' ],
- [ 'maxpool2d', 'Pool' ],
- [ 'pool-fix', 'Pool' ],
- [ 'relu', 'Activation' ],
- [ 'relu6', 'Activation' ],
- [ 'reshape-fix', 'Shape' ],
- [ 'reshape', 'Shape' ],
- [ 'scale', 'Layer' ],
- [ 'selu', 'Activation' ],
- [ 'shape', 'Shape' ],
- [ 'sigmoid', 'Activation' ],
- [ 'softmax', 'Activation' ],
- [ 'squeeze', 'Transform' ],
- [ 'stack', 'Tensor' ],
- [ 'strided_slice', 'Tensor' ],
- [ 'swish', 'Activation' ],
- [ 'tanh', 'Activation' ],
- [ 'threshold', 'Quantization' ],
- [ 'transpose', 'Tensor' ],
- [ 'transposed-conv2d', 'Layer' ],
- [ 'transposed-conv2d-fix', 'Layer' ],
- [ 'transposed-depthwise-conv2d', 'Layer' ],
- [ 'transposed-depthwise-conv2d-fix', 'Layer' ],
- [ 'upsample-fix', 'Data' ],
- ]);
- for (const op_def of op_defs) {
- const name = op_def.name;
- const metadata = {};
- metadata.name = name;
- if (op_def.annotation) {
- metadata.description = op_def.annotation;
- }
- metadata.inputs = op_def.input_args.map((input_arg) => {
- const input = {};
- input.name = input_arg.name;
- if (input_arg.annotation) {
- input.description = input_arg.annotation;
- }
- return input;
- });
- metadata.attributes = op_def.attrs.map((attr) => {
- const attribute = {};
- attribute.name = attr.name;
- const value = xmodel.Utility.attribute(attr.default_value);
- attribute.default = value.value;
- if (attr.annotation) {
- attribute.description = attr.annotation;
- }
- this._attributes.set(name + ':' + attr.name, attribute);
- return attribute;
- });
- if (categories.has(name)) {
- metadata.category = categories.get(name);
- }
- this._types.set(name, metadata);
- }
- for (const entry of categories) {
- const name = entry[0];
- const category = entry[1];
- if (!this._types.has(name)) {
- this._types.set(name, { name: name, category: category });
- }
- }
- }
- type(name) {
- if (!this._types.has(name)) {
- this._types.set(name, { name: name });
- }
- return this._types.get(name);
- }
- attribute(type, name) {
- const key = type + ':' + name;
- return this._attributes.get(key);
- }
- };
- xmodel.Error = class extends Error {
- constructor(message) {
- super(message);
- this.name = 'Error loading xmodel.';
- }
- };
- if (typeof module !== 'undefined' && typeof module.exports === 'object') {
- module.exports.ModelFactory = xmodel.ModelFactory;
- }
|