-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add paddle.tensor.math.prod #26351
Merged
Merged
Add paddle.tensor.math.prod #26351
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
79566ea
Add paddle.or.math.prod
gfwm2013 45d763d
Add new api : paddle.prod
gfwm2013 0b0fcda
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
gfwm2013 5123131
Add new api: paddle.prod
gfwm2013 fceb02c
Add new API: paddle.prod
gfwm2013 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
# 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 print_function | ||
|
||
import paddle | ||
import unittest | ||
import numpy as np | ||
|
||
|
||
class TestProdOp(unittest.TestCase): | ||
def setUp(self): | ||
self.input = np.random.random(size=(10, 10, 5)).astype(np.float32) | ||
|
||
def run_imperative(self): | ||
input = paddle.to_tensor(self.input) | ||
dy_result = paddle.prod(input) | ||
expected_result = np.prod(self.input) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
dy_result = paddle.prod(input, axis=1) | ||
expected_result = np.prod(self.input, axis=1) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
dy_result = paddle.prod(input, axis=-1) | ||
expected_result = np.prod(self.input, axis=-1) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
dy_result = paddle.prod(input, axis=[0, 1]) | ||
expected_result = np.prod(self.input, axis=(0, 1)) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
dy_result = paddle.prod(input, axis=1, keepdim=True) | ||
expected_result = np.prod(self.input, axis=1, keepdims=True) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
dy_result = paddle.prod(input, axis=1, dtype='int64') | ||
expected_result = np.prod(self.input, axis=1, dtype=np.int64) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
dy_result = paddle.prod(input, axis=1, keepdim=True, dtype='int64') | ||
expected_result = np.prod( | ||
self.input, axis=1, keepdims=True, dtype=np.int64) | ||
self.assertTrue(np.allclose(dy_result.numpy(), expected_result)) | ||
|
||
def run_static(self, use_gpu=False): | ||
input = paddle.data(name='input', shape=[10, 10, 5], dtype='float32') | ||
result0 = paddle.prod(input) | ||
result1 = paddle.prod(input, axis=1) | ||
result2 = paddle.prod(input, axis=-1) | ||
result3 = paddle.prod(input, axis=[0, 1]) | ||
result4 = paddle.prod(input, axis=1, keepdim=True) | ||
result5 = paddle.prod(input, axis=1, dtype='int64') | ||
result6 = paddle.prod(input, axis=1, keepdim=True, dtype='int64') | ||
|
||
place = paddle.CUDAPlace(0) if use_gpu else paddle.CPUPlace() | ||
exe = paddle.static.Executor(place) | ||
exe.run(paddle.static.default_startup_program()) | ||
static_result = exe.run(feed={"input": self.input}, | ||
fetch_list=[ | ||
result0, result1, result2, result3, result4, | ||
result5, result6 | ||
]) | ||
|
||
expected_result = np.prod(self.input) | ||
self.assertTrue(np.allclose(static_result[0], expected_result)) | ||
expected_result = np.prod(self.input, axis=1) | ||
self.assertTrue(np.allclose(static_result[1], expected_result)) | ||
expected_result = np.prod(self.input, axis=-1) | ||
self.assertTrue(np.allclose(static_result[2], expected_result)) | ||
expected_result = np.prod(self.input, axis=(0, 1)) | ||
self.assertTrue(np.allclose(static_result[3], expected_result)) | ||
expected_result = np.prod(self.input, axis=1, keepdims=True) | ||
self.assertTrue(np.allclose(static_result[4], expected_result)) | ||
expected_result = np.prod(self.input, axis=1, dtype=np.int64) | ||
self.assertTrue(np.allclose(static_result[5], expected_result)) | ||
expected_result = np.prod( | ||
self.input, axis=1, keepdims=True, dtype=np.int64) | ||
self.assertTrue(np.allclose(static_result[6], expected_result)) | ||
|
||
def test_cpu(self): | ||
paddle.disable_static(place=paddle.CPUPlace()) | ||
self.run_imperative() | ||
paddle.enable_static() | ||
|
||
with paddle.static.program_guard(paddle.static.Program()): | ||
self.run_static() | ||
|
||
def test_gpu(self): | ||
if not paddle.fluid.core.is_compiled_with_cuda(): | ||
return | ||
|
||
paddle.disable_static(place=paddle.CUDAPlace(0)) | ||
self.run_imperative() | ||
paddle.enable_static() | ||
|
||
with paddle.static.program_guard(paddle.static.Program()): | ||
self.run_static(use_gpu=True) | ||
|
||
|
||
class TestProdOpError(unittest.TestCase): | ||
def test_error(self): | ||
with paddle.static.program_guard(paddle.static.Program(), | ||
paddle.static.Program()): | ||
x = paddle.data(name='x', shape=[2, 2, 4], dtype='float32') | ||
bool_x = paddle.data(name='bool_x', shape=[2, 2, 4], dtype='bool') | ||
# The argument x shoule be a Tensor | ||
self.assertRaises(TypeError, paddle.prod, [1]) | ||
|
||
# The data type of x should be float32, float64, int32, int64 | ||
self.assertRaises(TypeError, paddle.prod, bool_x) | ||
|
||
# The argument axis's type shoule be int ,list or tuple | ||
self.assertRaises(TypeError, paddle.prod, x, 1.5) | ||
|
||
# The argument dtype of prod_op should be float32, float64, int32 or int64. | ||
self.assertRaises(TypeError, paddle.prod, x, 'bool') | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
axis支持负数吗? 如果支持可以添加单测
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, done.