ONE - On-device Neural Engine
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1
from
test_utils
import
TestCase
2
from
test_utils
import
gen_random_tensor
3
4
5
class
Conv2D_005_Q8
(
TestCase
):
6
def
__init__
(self):
7
self.
name
= _name_
8
9
def
generate
(self) -> dict:
10
json_content = dict()
11
12
# Generate ifm
13
json_content[
'ifm'
] = gen_random_tensor(
14
"uint8"
,
# dtype_str
15
(1),
# scale_shape
16
(1),
# zerop_shape
17
0)
# quantized_dimension
18
19
# Generate ker
20
json_content[
'ker'
] = gen_random_tensor(
21
"uint8"
,
#dtype_str
22
(1),
# scale_shape
23
(1),
# zerop_shape
24
0,
# quantized_dimension
25
(1, 1, 1, 2))
# value_shape (OHWI)
26
27
# Generate ofm
28
json_content[
'ofm'
] = gen_random_tensor(
29
"uint8"
,
# dtype_str
30
(1),
# scale_shape
31
(1),
# zerop_shape
32
0)
# quantized_dimension
33
34
return
json_content
35
36
37
_name_ =
'Conv2D_005_Q8'
38
39
_test_case_ =
Conv2D_005_Q8
()
Conv2D_005.Conv2D_005_Q8
Definition
__init__.py:5
Conv2D_005.Conv2D_005_Q8.generate
dict generate(self)
Definition
__init__.py:9
Conv2D_005.Conv2D_005_Q8.name
name
Definition
__init__.py:7
Conv2D_005.Conv2D_005_Q8.__init__
__init__(self)
Definition
__init__.py:6
test_utils.TestCase
Definition
test_utils.py:72
compiler
q-implant-qparam-test
qparam
Conv2D_005
__init__.py
Generated by
1.9.8