/
usr
/
local
/
lib64
/
python3.6
/
site-packages
/
caffe2
/
quantization
/
server
/
/usr/local/lib64/python3.6/site-packages/caffe2/quantization/server
mkdir
upload
Name
Size
Mode
Actions
__pycache__/
-
0755
rm
batch_matmul_dnnlowp_op_test.py
10152
0644
edit
dl
rm
batch_permutation_dnnlowp_op_test.py
1449
0644
edit
dl
rm
channel_shuffle_dnnlowp_op_test.py
3890
0644
edit
dl
rm
compute_equalization_scale_test.py
3154
0644
edit
dl
rm
concat_dnnlowp_op_test.py
3265
0644
edit
dl
rm
conv_depthwise_dnnlowp_op_test.py
10931
0644
edit
dl
rm
conv_dnnlowp_acc16_op_test.py
14202
0644
edit
dl
rm
conv_dnnlowp_op_test.py
17919
0644
edit
dl
rm
conv_groupwise_dnnlowp_acc16_op_test.py
11664
0644
edit
dl
rm
conv_groupwise_dnnlowp_op_test.py
9537
0644
edit
dl
rm
dequantize_dnnlowp_op_test.py
1743
0644
edit
dl
rm
dnnlowp_test_utils.py
14544
0644
edit
dl
rm
elementwise_add_dnnlowp_op_test.py
6662
0644
edit
dl
rm
elementwise_linear_dnnlowp_op_test.py
3101
0644
edit
dl
rm
elementwise_mul_dnnlowp_op_test.py
6315
0644
edit
dl
rm
elementwise_sum_dnnlowp_op_test.py
9682
0644
edit
dl
rm
fully_connected_dnnlowp_acc16_op_test.py
8324
0644
edit
dl
rm
fully_connected_dnnlowp_op_test.py
10463
0644
edit
dl
rm
fully_connected_fp16_test.py
2519
0644
edit
dl
rm
fully_connected_rowwise_dnnlowp_op_test.py
5434
0644
edit
dl
rm
gather_dnnlowp_op_test.py
2790
0644
edit
dl
rm
group_norm_dnnlowp_op_test.py
4566
0644
edit
dl
rm
int8_gen_quant_params_min_max_test.py
3491
0644
edit
dl
rm
int8_gen_quant_params_test.py
3550
0644
edit
dl
rm
int8_quant_scheme_blob_fill_test.py
1838
0644
edit
dl
rm
lstm_unit_dnnlowp_op_test.py
3975
0644
edit
dl
rm
observer_test.py
1011
0644
edit
dl
rm
pool_dnnlowp_op_test.py
6125
0644
edit
dl
rm
quantize_dnnlowp_op_test.py
2668
0644
edit
dl
rm
relu_dnnlowp_op_test.py
2418
0644
edit
dl
rm
resize_nearest_3d_dnnlowp_op_test.py
2289
0644
edit
dl
rm
resize_nearest_dnnlowp_op_test.py
1994
0644
edit
dl
rm
sigmoid_dnnlowp_op_test.py
2203
0644
edit
dl
rm
spatial_batch_norm_dnnlowp_op_test.py
4094
0644
edit
dl
rm
tanh_dnnlowp_op_test.py
2187
0644
edit
dl
rm
utils.py
16059
0644
edit
dl
rm
__init__.py
0
0644
edit
dl
rm
Edit:
/usr/local/lib64/python3.6/site-packages/caffe2/quantization/server/concat_dnnlowp_op_test.py
(3265B)
import collections import caffe2.python.hypothesis_test_util as hu import hypothesis.strategies as st import numpy as np from caffe2.python import core, dyndep, workspace from caffe2.quantization.server.dnnlowp_test_utils import check_quantized_results_close from hypothesis import given dyndep.InitOpsLibrary("//caffe2/caffe2/quantization/server:dnnlowp_ops") workspace.GlobalInit(["caffe2", "--caffe2_omp_num_threads=11"]) class DNNLowPConcatOpTest(hu.HypothesisTestCase): @given( dim1=st.integers(0, 256), dim2=st.integers(0, 256), axis=st.integers(0, 1), in_quantized=st.booleans(), out_quantized=st.booleans(), **hu.gcs_cpu_only ) def test_dnnlowp_concat_int( self, dim1, dim2, axis, in_quantized, out_quantized, gc, dc ): # X has scale 1, so exactly represented after quantization min_ = -100 max_ = min_ + 255 X = np.round(np.random.rand(dim1, dim2) * (max_ - min_) + min_) X = X.astype(np.float32) if dim1 >= 1 and dim2 >= 2: X[0, 0] = min_ X[0, 1] = max_ elif dim2 == 1: return # Y has scale 1/2, so exactly represented after quantization Y = np.round(np.random.rand(dim1, dim2) * 255 / 2 - 64) Y = Y.astype(np.float32) if dim1 >= 1 and dim2 >= 2: Y[0, 0] = -64 Y[0, 1] = 127.0 / 2 Output = collections.namedtuple("Output", ["Z", "op_type", "engine"]) outputs = [] op_engine_list = [ ("Concat", ""), ("Concat", "DNNLOWP"), ("Int8Concat", "DNNLOWP"), ] for op_type, engine in op_engine_list: net = core.Net("test_net") do_quantize = "DNNLOWP" in engine and in_quantized do_dequantize = "DNNLOWP" in engine and out_quantized if do_quantize: quantize_x = core.CreateOperator( "Quantize", ["X"], ["X_q"], engine=engine, device_option=gc ) quantize_y = core.CreateOperator( "Quantize", ["Y"], ["Y_q"], engine=engine, device_option=gc ) net.Proto().op.extend([quantize_x, quantize_y]) concat = core.CreateOperator( op_type, ["X_q", "Y_q"] if do_quantize else ["X", "Y"], ["Z_q" if do_dequantize else "Z", "split"], dequantize_output=not do_dequantize, engine=engine, device_option=gc, axis=axis, ) net.Proto().op.extend([concat]) if do_dequantize: dequantize = core.CreateOperator( "Dequantize", ["Z_q"], ["Z"], engine=engine, device_option=gc ) net.Proto().op.extend([dequantize]) self.ws.create_blob("X").feed(X, device_option=gc) self.ws.create_blob("Y").feed(Y, device_option=gc) self.ws.create_blob("split") self.ws.run(net) outputs.append( Output(Z=self.ws.blobs["Z"].fetch(), op_type=op_type, engine=engine) ) check_quantized_results_close(outputs)
Save
cmd:
run