msluszniak commited on
Commit
2721389
·
verified ·
1 Parent(s): a09d146

Add spec-compliant config.json files

Browse files
Files changed (1) hide show
  1. xnnpack/config.json +75 -3
xnnpack/config.json CHANGED
@@ -13,19 +13,91 @@
13
  "file": "clip_vit_base_patch32_xnnpack_fp32.pte",
14
  "precision": "fp32",
15
  "quantized": false,
16
- "default": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  },
18
  {
19
  "file": "clip_vit_base_patch32_xnnpack_fp32.pte",
20
  "precision": "fp32",
21
  "quantized": false,
22
- "default": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  },
24
  {
25
  "file": "clip_vit_base_patch32_xnnpack_int8.pte",
26
  "precision": "int8",
27
  "quantized": true,
28
- "default": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
30
  ]
31
  }
 
13
  "file": "clip_vit_base_patch32_xnnpack_fp32.pte",
14
  "precision": "fp32",
15
  "quantized": false,
16
+ "default": true,
17
+ "methods": {
18
+ "forward": {
19
+ "inputs": [
20
+ {
21
+ "shape": [
22
+ 1,
23
+ 3,
24
+ 224,
25
+ 224
26
+ ],
27
+ "dtype": "float32"
28
+ }
29
+ ],
30
+ "outputs": [
31
+ {
32
+ "shape": [
33
+ 1,
34
+ 512
35
+ ],
36
+ "dtype": "float32"
37
+ }
38
+ ]
39
+ }
40
+ }
41
  },
42
  {
43
  "file": "clip_vit_base_patch32_xnnpack_fp32.pte",
44
  "precision": "fp32",
45
  "quantized": false,
46
+ "default": false,
47
+ "methods": {
48
+ "forward": {
49
+ "inputs": [
50
+ {
51
+ "shape": [
52
+ 1,
53
+ 3,
54
+ 224,
55
+ 224
56
+ ],
57
+ "dtype": "float32"
58
+ }
59
+ ],
60
+ "outputs": [
61
+ {
62
+ "shape": [
63
+ 1,
64
+ 512
65
+ ],
66
+ "dtype": "float32"
67
+ }
68
+ ]
69
+ }
70
+ }
71
  },
72
  {
73
  "file": "clip_vit_base_patch32_xnnpack_int8.pte",
74
  "precision": "int8",
75
  "quantized": true,
76
+ "default": true,
77
+ "methods": {
78
+ "forward": {
79
+ "inputs": [
80
+ {
81
+ "shape": [
82
+ 1,
83
+ 3,
84
+ 224,
85
+ 224
86
+ ],
87
+ "dtype": "float32"
88
+ }
89
+ ],
90
+ "outputs": [
91
+ {
92
+ "shape": [
93
+ 1,
94
+ 512
95
+ ],
96
+ "dtype": "float32"
97
+ }
98
+ ]
99
+ }
100
+ }
101
  }
102
  ]
103
  }