Skip to content

Commit bf102ac

Browse files
committed
Remove pcc apis from __all__ temporarily.
1 parent f904216 commit bf102ac

File tree

5 files changed

+0
-16
lines changed

5 files changed

+0
-16
lines changed

python/paddle/incubate/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,4 @@
6969
'segment_min',
7070
'identity_loss',
7171
'inference',
72-
'cc',
7372
]

python/paddle/incubate/cc/__init__.py

-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,3 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
15-
from . import fuse
16-
from .compiler import compile
17-
18-
__all__ = ['fuse', 'compile']

python/paddle/incubate/cc/compiler.py

-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626

2727
from . import typing as pct
2828

29-
__all__ = ['compile']
30-
3129

3230
# Usage:
3331
# import paddle.incubate.cc.typing as pct

python/paddle/incubate/cc/fuse.py

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
import paddle
1616

17-
__all__ = ['matmul']
18-
1917

2018
def matmul(x, w, epilogue, **kwargs):
2119
x = paddle.matmul(x, w, **kwargs)

python/paddle/incubate/cc/typing.py

-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414

1515
from __future__ import annotations
1616

17-
__all__ = [
18-
'DimVar',
19-
'DTypeVar',
20-
'Tensor',
21-
]
22-
2317

2418
# Usage:
2519
# N = paddle.incubate.cc.typing.DimVar("N")

0 commit comments

Comments
 (0)