Skip to content

Commit

Permalink
Update onednn.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Jun 2, 2024
1 parent 2b4742e commit fe2ec50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/onednn.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ onednn.Model = class {

constructor(metadata, symbol) {
const version = symbol.version;
this.format = `oneDNN Graph${version ? ` v${version}` : ''}`;
this.format = `oneDNN${version ? ` v${version}` : ''}`;
this.runtime = `${symbol.engine_kind} ${symbol.fpmath_mode}`;
this.graphs = [new onednn.Graph(metadata, symbol)];
}
Expand Down
8 changes: 4 additions & 4 deletions test/models.json
Original file line number Diff line number Diff line change
Expand Up @@ -3634,28 +3634,28 @@
"type": "onednn",
"target": "f8_matmul.json",
"source": "https://github.com/lutzroeder/netron/files/14018893/f8_matmul.json.zip[f8_matmul.json]",
"format": "oneDNN Graph v3.3.0",
"format": "oneDNN v3.3.0",
"link": "https://github.com/lutzroeder/netron/issues/1006"
},
{
"type": "onednn",
"target": "sample-graph-100001.json",
"source": "https://github.com/lutzroeder/netron/files/10037438/sample-graph-100001.json.zip[sample-graph-100001.json]",
"format": "oneDNN Graph v3.0.0",
"format": "oneDNN v3.0.0",
"link": "https://github.com/lutzroeder/netron/issues/1006"
},
{
"type": "onednn",
"target": "resnet50-sample-graph.json",
"source": "https://github.com/lutzroeder/netron/files/10065168/resnet50-sample-graph.json.zip[resnet50-sample-graph.json]",
"format": "oneDNN Graph v3.0.0",
"format": "oneDNN v3.0.0",
"link": "https://github.com/lutzroeder/netron/issues/1006"
},
{
"type": "onednn",
"target": "sample-graph-with-ports-100001.json",
"source": "https://github.com/lutzroeder/netron/files/11544591/sample-graph-with-ports-100001.json.zip[sample-graph-with-ports-100001.json]",
"format": "oneDNN Graph v3.1.0",
"format": "oneDNN v3.1.0",
"link": "https://github.com/lutzroeder/netron/issues/1006"
},
{
Expand Down

0 comments on commit fe2ec50

Please sign in to comment.