File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright 2018 Google Inc.
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # https://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+ # ==============================================================================
15+ """Exceptions for FFN inference."""
16+
17+
18+ class TerminationException (Exception ): # pylint: disable=g-bad-exception-name
19+ """Indicates that the program has been requested to shut down."""
20+ pass
Original file line number Diff line number Diff line change 3939
4040from ..training import model as ffn_model
4141from . import inference_utils
42+ from .errors import TerminationException
4243from .inference_utils import timer_counter
4344
4445
45- class TerminationException (Exception ): # pylint: disable=g-bad-exception-name
46- """Indicates that the program has been requested to shut down."""
47- pass
48-
49-
5046class ExecutorInterface :
5147 """Provides a client/server interface.
5248
You can’t perform that action at this time.
0 commit comments