diff --git a/python/paddle/tensor/math.py b/python/paddle/tensor/math.py index f74ace5135f67b..4a6a632ed3d7ce 100644 --- a/python/paddle/tensor/math.py +++ b/python/paddle/tensor/math.py @@ -3910,11 +3910,10 @@ def clip_( """ fmin = float(np.finfo(np.float32).min) fmax = float(np.finfo(np.float32).max) - tensor_dtype = 'float32' if is_clip_tensor(min) or is_clip_tensor(max): - min = check_set_clip_var(min, x, tensor_dtype, fmin, 'min') - max = check_set_clip_var(max, x, tensor_dtype, fmax, 'max') + min = check_set_clip_var(min, x, fmin, 'min') + max = check_set_clip_var(max, x, fmax, 'max') if in_dynamic_mode(): return _C_ops.clip_tensor_(x, min, max)