add check approval (#26284)

test=develop
revert-24895-update_cub
Dong Daxiang 5 years ago committed by GitHub
parent bb11cbc250
commit cbf8ba1591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -754,7 +754,7 @@ class Optimizer(object):
params_grads = append_backward(loss, parameter_list, params_grads = append_backward(loss, parameter_list,
act_no_grad_set, callbacks) act_no_grad_set, callbacks)
# Note: since we can't use all_reduce_op now, # Note: since we can't use all_reduce_op now,
# dgc_op should be the last op of one grad. # dgc_op should be the last op of one grad.
self._append_dgc_ops(params_grads) self._append_dgc_ops(params_grads)
return params_grads return params_grads

@ -19,7 +19,8 @@ API_FILES=("CMakeLists.txt"
"paddle/fluid/framework/ir/node.h" "paddle/fluid/framework/ir/node.h"
"paddle/fluid/framework/ir/graph.h" "paddle/fluid/framework/ir/graph.h"
"paddle/fluid/framework/framework.proto" "paddle/fluid/framework/framework.proto"
"python/paddle/fleet/__init__.py" "python/paddle/distributed/__init"
"python/paddle/distributed/fleet/__init__.py"
"python/requirements.txt" "python/requirements.txt"
"python/paddle/fluid/__init__.py" "python/paddle/fluid/__init__.py"
"python/paddle/fluid/compiler.py" "python/paddle/fluid/compiler.py"
@ -118,7 +119,10 @@ for API_FILE in ${API_FILES[*]}; do
elif [ "${API_FILE}" == "tools/wlist.json" ];then elif [ "${API_FILE}" == "tools/wlist.json" ];then
echo_line="You must have one TPM (jzhang533) approval for the api whitelist for the tools/wlist.json.\n" echo_line="You must have one TPM (jzhang533) approval for the api whitelist for the tools/wlist.json.\n"
check_approval 1 29231 check_approval 1 29231
elif [ "${API_FILE}" == "python/paddle/fleet/__init__.py" ]; then elif [ "${API_FILE}" == "python/paddle/distributed/fleet/__init__.py" ]; then
echo_line="You must have (guru4elephant,raindrops2sea) approval for ${API_FILE} changes "
check_approval 1 35550832 38231817
elif [ "${API_FILE}" == "python/paddle/distributed/__init__.py" ]; then
echo_line="You must have (guru4elephant,raindrops2sea) approval for ${API_FILE} changes " echo_line="You must have (guru4elephant,raindrops2sea) approval for ${API_FILE} changes "
check_approval 1 35550832 38231817 check_approval 1 35550832 38231817
else else

Loading…
Cancel
Save