-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Paddle Backend][Fix] Fix wrong custom operator installation filename (…
…#3127) 1. Fix wrong custom operator installation filename 2. Fix missing file `deepmd/entrypoints/gui.py` 3. Annotated `@cast_precision` and keep brackets `[]` util problems fixed @SigureMo
- Loading branch information
1 parent
d6cdc35
commit f132a39
Showing
4 changed files
with
46 additions
and
11 deletions.
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,31 @@ | ||
# SPDX-License-Identifier: LGPL-3.0-or-later | ||
"""DP-GUI entrypoint.""" | ||
|
||
|
||
def start_dpgui(*, port: int, bind_all: bool, **kwargs): | ||
"""Host DP-GUI server. | ||
Parameters | ||
---------- | ||
port : int | ||
The port to serve DP-GUI on. | ||
bind_all : bool | ||
Serve on all public interfaces. This will expose your DP-GUI instance | ||
to the network on both IPv4 and IPv6 (where available). | ||
**kwargs | ||
additional arguments | ||
Raises | ||
------ | ||
ModuleNotFoundError | ||
The dpgui package is not installed | ||
""" | ||
try: | ||
from dpgui import ( | ||
start_dpgui, | ||
) | ||
except ModuleNotFoundError as e: | ||
raise ModuleNotFoundError( | ||
"To use DP-GUI, please install the dpgui package:\npip install dpgui" | ||
) from e | ||
start_dpgui(port=port, bind_all=bind_all) |
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