msluszniak commited on
Commit
66ebd9a
·
verified ·
1 Parent(s): 1bc1f34

Add spec-compliant config.json files

Browse files
Files changed (1) hide show
  1. xnnpack/config.json +54 -2
xnnpack/config.json CHANGED
@@ -12,13 +12,65 @@
12
  "file": "lraspp_mobilenet_v3_large_xnnpack_fp32.pte",
13
  "precision": "fp32",
14
  "quantized": false,
15
- "default": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  },
17
  {
18
  "file": "lraspp_mobilenet_v3_large_xnnpack_int8.pte",
19
  "precision": "int8",
20
  "quantized": true,
21
- "default": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
23
  ]
24
  }
 
12
  "file": "lraspp_mobilenet_v3_large_xnnpack_fp32.pte",
13
  "precision": "fp32",
14
  "quantized": false,
15
+ "default": true,
16
+ "methods": {
17
+ "forward": {
18
+ "inputs": [
19
+ {
20
+ "shape": [
21
+ 1,
22
+ 3,
23
+ 520,
24
+ 520
25
+ ],
26
+ "dtype": "float32"
27
+ }
28
+ ],
29
+ "outputs": [
30
+ {
31
+ "shape": [
32
+ 1,
33
+ 21,
34
+ 520,
35
+ 520
36
+ ],
37
+ "dtype": "float32"
38
+ }
39
+ ]
40
+ }
41
+ }
42
  },
43
  {
44
  "file": "lraspp_mobilenet_v3_large_xnnpack_int8.pte",
45
  "precision": "int8",
46
  "quantized": true,
47
+ "default": true,
48
+ "methods": {
49
+ "forward": {
50
+ "inputs": [
51
+ {
52
+ "shape": [
53
+ 1,
54
+ 3,
55
+ 520,
56
+ 520
57
+ ],
58
+ "dtype": "float32"
59
+ }
60
+ ],
61
+ "outputs": [
62
+ {
63
+ "shape": [
64
+ 1,
65
+ 21,
66
+ 520,
67
+ 520
68
+ ],
69
+ "dtype": "float32"
70
+ }
71
+ ]
72
+ }
73
+ }
74
  }
75
  ]
76
  }