Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions python/paddle/utils/decorator_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,9 @@ def wrapped_func(*args: Any, **kwargs: Any) -> Any:
kwargs['shape'] = list(args)
args = ()

if 'shape' in kwargs and isinstance(kwargs['shape'], int):
kwargs['shape'] = [kwargs['shape']]

return func(*args, **kwargs)

wrapped_func.__signature__ = inspect.signature(func)
Expand Down
36 changes: 36 additions & 0 deletions test/legacy_test/test_int_shape.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Copyright (c) 2025 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.

import unittest

from utils import dygraph_guard

import paddle


class TestIntShape(unittest.TestCase):
def test_eager(self):
with dygraph_guard():
for shape in [
2,
0,
10,
]:
for func in [paddle.rand]:
x = func(shape=shape)
self.assertEqual(x.shape, [shape])


if __name__ == "__main__":
unittest.main()
Loading