Add support for mkldnn ops types selection with FLAGS in dygraph (#27482)
* Add support for mkldnn ops types selection with FLAGS in dygraph * use regex to match DNNL verbose * python3 encoding fixmy_2.0rc
parent
e7b476c15d
commit
0ecf441af1
@ -0,0 +1,56 @@
|
||||
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from __future__ import unicode_literals
|
||||
from __future__ import print_function
|
||||
|
||||
import numpy as np
|
||||
import paddle.fluid as fluid
|
||||
import os
|
||||
from paddle.fluid.layer_helper import LayerHelper
|
||||
|
||||
|
||||
def check():
|
||||
print("check: fluid.core.globals()['FLAGS_use_mkldnn']=",
|
||||
fluid.core.globals()["FLAGS_use_mkldnn"])
|
||||
print("check: fluid.get_flags('FLAGS_use_mkldnn')=",
|
||||
fluid.get_flags(['FLAGS_use_mkldnn']))
|
||||
print("check: DNNL_VERBOSE=", os.environ['DNNL_VERBOSE'])
|
||||
print("check: FLAGS_tracer_mkldnn_ops_on=",
|
||||
fluid.core.globals()['FLAGS_tracer_mkldnn_ops_on'])
|
||||
print("check: FLAGS_tracer_mkldnn_ops_off=",
|
||||
fluid.core.globals()['FLAGS_tracer_mkldnn_ops_off'])
|
||||
a_np = np.random.uniform(-2, 2, (10, 20, 30)).astype(np.float32)
|
||||
b_np = np.random.uniform(-5, 5, (10, 20, 30)).astype(np.float32)
|
||||
helper = LayerHelper(fluid.unique_name.generate(str("test")), act="relu")
|
||||
func = helper.append_activation
|
||||
with fluid.dygraph.guard(fluid.core.CPUPlace()):
|
||||
a = fluid.dygraph.to_variable(a_np)
|
||||
b = fluid.dygraph.to_variable(b_np)
|
||||
y = fluid.layers.elementwise_add(x=a, y=b)
|
||||
y = fluid.layers.matmul(x=y, y=b, transpose_y=True)
|
||||
res1 = func(y)
|
||||
|
||||
np_res = np.add(a_np, b_np)
|
||||
np_res = np.matmul(np_res, np.transpose(b_np, (0, 2, 1)))
|
||||
np_res = np.maximum(np_res, 0)
|
||||
assert np.allclose(res1.numpy(), np_res, atol=1e-3)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
check()
|
||||
except Exception as e:
|
||||
print(e)
|
||||
print(type(e))
|
@ -0,0 +1,102 @@
|
||||
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from __future__ import unicode_literals
|
||||
from __future__ import print_function
|
||||
|
||||
import unittest
|
||||
import os
|
||||
import sys
|
||||
import subprocess
|
||||
import re
|
||||
|
||||
|
||||
class TestFlagsUseMkldnn(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self._python_interp = sys.executable
|
||||
self._python_interp += " check_flags_mkldnn_ops_on_off.py"
|
||||
|
||||
self.env = os.environ.copy()
|
||||
self.env[str("DNNL_VERBOSE")] = str("1")
|
||||
self.env[str("FLAGS_use_mkldnn")] = str("1")
|
||||
|
||||
self.relu_regex = b"^dnnl_verbose,exec,cpu,eltwise,.+alg:eltwise_relu alpha:0 beta:0,10x20x20"
|
||||
self.ew_add_regex = b"^dnnl_verbose,exec,cpu,binary.+alg:binary_add,10x20x30:10x20x30 10x20x30"
|
||||
self.matmul_regex = b"^dnnl_verbose,exec,cpu,matmul,.*b10m20n20k30"
|
||||
|
||||
def flags_use_mkl_dnn_common(self, e):
|
||||
cmd = self._python_interp
|
||||
env = dict(self.env, **e)
|
||||
proc = subprocess.Popen(
|
||||
cmd.split(" "),
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
env=env)
|
||||
|
||||
out, err = proc.communicate()
|
||||
returncode = proc.returncode
|
||||
|
||||
assert returncode == 0
|
||||
return out
|
||||
|
||||
def found(self, regex, out):
|
||||
return re.search(regex, out, re.MULTILINE)
|
||||
|
||||
def test_flags_use_mkl_dnn_on_empty_off_empty(self):
|
||||
out = self.flags_use_mkl_dnn_common({})
|
||||
assert self.found(self.relu_regex, out)
|
||||
assert self.found(self.ew_add_regex, out)
|
||||
assert self.found(self.matmul_regex, out)
|
||||
|
||||
def test_flags_use_mkl_dnn_on(self):
|
||||
env = {str("FLAGS_tracer_mkldnn_ops_on"): str("relu")}
|
||||
out = self.flags_use_mkl_dnn_common(env)
|
||||
assert self.found(self.relu_regex, out)
|
||||
assert not self.found(self.ew_add_regex, out)
|
||||
assert not self.found(self.matmul_regex, out)
|
||||
|
||||
def test_flags_use_mkl_dnn_on_multiple(self):
|
||||
env = {str("FLAGS_tracer_mkldnn_ops_on"): str("relu,elementwise_add")}
|
||||
out = self.flags_use_mkl_dnn_common(env)
|
||||
assert self.found(self.relu_regex, out)
|
||||
assert self.found(self.ew_add_regex, out)
|
||||
assert not self.found(self.matmul_regex, out)
|
||||
|
||||
def test_flags_use_mkl_dnn_off(self):
|
||||
env = {str("FLAGS_tracer_mkldnn_ops_off"): str("matmul")}
|
||||
out = self.flags_use_mkl_dnn_common(env)
|
||||
assert self.found(self.relu_regex, out)
|
||||
assert self.found(self.ew_add_regex, out)
|
||||
assert not self.found(self.matmul_regex, out)
|
||||
|
||||
def test_flags_use_mkl_dnn_off_multiple(self):
|
||||
env = {str("FLAGS_tracer_mkldnn_ops_off"): str("matmul,relu")}
|
||||
out = self.flags_use_mkl_dnn_common(env)
|
||||
assert not self.found(self.relu_regex, out)
|
||||
assert self.found(self.ew_add_regex, out)
|
||||
assert not self.found(self.matmul_regex, out)
|
||||
|
||||
def test_flags_use_mkl_dnn_on_off(self):
|
||||
env = {
|
||||
str("FLAGS_tracer_mkldnn_ops_on"): str("elementwise_add"),
|
||||
str("FLAGS_tracer_mkldnn_ops_off"): str("matmul")
|
||||
}
|
||||
out = self.flags_use_mkl_dnn_common(env)
|
||||
assert not self.found(self.relu_regex, out)
|
||||
assert self.found(self.ew_add_regex, out)
|
||||
assert not self.found(self.matmul_regex, out)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Loading…
Reference in new issue