Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,25 +102,26 @@ def setUp(self):
output1 = conv2d_forward_refer(
input.astype(np.int32), filter_int, self.groups,
conv2d_param).astype(np.float32)
output1_tmp = np.round(output1 * (
self.scale_out / (self.scale_in * self.scale_weights[0])))

if self.fuse_residual:
input_residual = np.random.randint(
0, 10, self.input_residual_size).astype(self.srctype)
output_tmp = np.round(output1 * (self.scale_out / (
output_tmp_res = np.round(output1 * (self.scale_out / (
self.scale_in * self.scale_weights[0])) + format_reorder(
input_residual, self.input_residual_size).astype(
np.int32) * (self.scale_out / self.scale_in_eltwise
))
output_tmp2 = np.round(output1 * (
self.scale_out / (self.scale_in * self.scale_weights[0])))
if self.fuse_relu:
output = np.maximum(output_tmp, 0).astype(self.dsttype)
output = np.maximum(output_tmp_res, 0).astype(self.dsttype)
else:
output = output_tmp.astype(self.dsttype)
output = output_tmp_res.astype(self.dsttype)
else:
if self.fuse_relu:
output = np.maximum(output_tmp2, 0).astype(self.dsttype)
output = np.maximum(output1_tmp, 0).astype(self.dsttype)
else:
output = output_tmp2.astype(self.dsttype)
output = output1_tmp.astype(self.dsttype)

self.inputs = {
'Input':
Expand Down Expand Up @@ -265,11 +266,9 @@ def init_data_type_with_fusion(self, input_dt, fuse_relu, fuse_residual):
self.srctype = input_dt
self.dsttype = np.uint8 if fuse_relu else np.int8

def init_fuse_relu(self):
self.fuse_relu = fuse_relu
self.fuse_relu = fuse_relu

def init_fuse_residual(self):
self.fuse_residual = fuse_residual
self.fuse_residual = fuse_residual


def create_test_int8_class(parent):
Expand Down