-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'intelligent-machine-learning:master' into master
- Loading branch information
Showing
20 changed files
with
4,888 additions
and
7 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
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,47 @@ | ||
# Copyright 2020 The EasyDL 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. | ||
|
||
try: | ||
from importlib import metadata | ||
except ImportError: | ||
import importlib_metadata as metadata | ||
|
||
from packaging.version import Version | ||
|
||
|
||
def package_version_bigger_than(pkg_name, version): | ||
pkg_v = metadata.version(pkg_name) | ||
return Version(pkg_v) > Version(version) | ||
|
||
|
||
if package_version_bigger_than("protobuf", "3.20.3"): | ||
from .protobuf_4_25_3 import ( | ||
brain_pb2, | ||
brain_pb2_grpc, | ||
elastic_training_pb2, | ||
elastic_training_pb2_grpc, | ||
) | ||
else: | ||
from .protobuf_3_20_3 import ( | ||
brain_pb2, | ||
brain_pb2_grpc, | ||
elastic_training_pb2, | ||
elastic_training_pb2_grpc, | ||
) | ||
|
||
__all__ = [ | ||
"elastic_training_pb2", | ||
"elastic_training_pb2_grpc", | ||
"brain_pb2", | ||
"brain_pb2_grpc", | ||
] |
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,12 @@ | ||
# Copyright 2021 The EasyDL 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. |
Large diffs are not rendered by default.
Oops, something went wrong.
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,183 @@ | ||
# Copyright 2024 The DLRover 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. | ||
|
||
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! | ||
"""Client and server classes corresponding to protobuf-defined services.""" | ||
import grpc | ||
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2 | ||
|
||
from . import brain_pb2 as brain__pb2 | ||
|
||
|
||
class BrainStub(object): | ||
"""Missing associated documentation comment in .proto file.""" | ||
|
||
def __init__(self, channel): | ||
"""Constructor. | ||
Args: | ||
channel: A grpc.Channel. | ||
""" | ||
self.persist_metrics = channel.unary_unary( | ||
"/brain.Brain/persist_metrics", | ||
request_serializer=brain__pb2.JobMetrics.SerializeToString, | ||
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, | ||
) | ||
self.optimize = channel.unary_unary( | ||
"/brain.Brain/optimize", | ||
request_serializer=brain__pb2.OptimizeRequest.SerializeToString, | ||
response_deserializer=brain__pb2.OptimizeResponse.FromString, | ||
) | ||
self.get_job_metrics = channel.unary_unary( | ||
"/brain.Brain/get_job_metrics", | ||
request_serializer=brain__pb2.JobMetricsRequest.SerializeToString, | ||
response_deserializer=brain__pb2.JobMetricsResponse.FromString, | ||
) | ||
|
||
|
||
class BrainServicer(object): | ||
"""Missing associated documentation comment in .proto file.""" | ||
|
||
def persist_metrics(self, request, context): | ||
"""Missing associated documentation comment in .proto file.""" | ||
context.set_code(grpc.StatusCode.UNIMPLEMENTED) | ||
context.set_details("Method not implemented!") | ||
raise NotImplementedError("Method not implemented!") | ||
|
||
def optimize(self, request, context): | ||
"""Missing associated documentation comment in .proto file.""" | ||
context.set_code(grpc.StatusCode.UNIMPLEMENTED) | ||
context.set_details("Method not implemented!") | ||
raise NotImplementedError("Method not implemented!") | ||
|
||
def get_job_metrics(self, request, context): | ||
"""Missing associated documentation comment in .proto file.""" | ||
context.set_code(grpc.StatusCode.UNIMPLEMENTED) | ||
context.set_details("Method not implemented!") | ||
raise NotImplementedError("Method not implemented!") | ||
|
||
|
||
def add_BrainServicer_to_server(servicer, server): | ||
rpc_method_handlers = { | ||
"persist_metrics": grpc.unary_unary_rpc_method_handler( | ||
servicer.persist_metrics, | ||
request_deserializer=brain__pb2.JobMetrics.FromString, | ||
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, | ||
), | ||
"optimize": grpc.unary_unary_rpc_method_handler( | ||
servicer.optimize, | ||
request_deserializer=brain__pb2.OptimizeRequest.FromString, | ||
response_serializer=brain__pb2.OptimizeResponse.SerializeToString, | ||
), | ||
"get_job_metrics": grpc.unary_unary_rpc_method_handler( | ||
servicer.get_job_metrics, | ||
request_deserializer=brain__pb2.JobMetricsRequest.FromString, | ||
response_serializer=brain__pb2.JobMetricsResponse.SerializeToString, | ||
), | ||
} | ||
generic_handler = grpc.method_handlers_generic_handler( | ||
"brain.Brain", rpc_method_handlers | ||
) | ||
server.add_generic_rpc_handlers((generic_handler,)) | ||
|
||
|
||
# This class is part of an EXPERIMENTAL API. | ||
class Brain(object): | ||
"""Missing associated documentation comment in .proto file.""" | ||
|
||
@staticmethod | ||
def persist_metrics( | ||
request, | ||
target, | ||
options=(), | ||
channel_credentials=None, | ||
call_credentials=None, | ||
insecure=False, | ||
compression=None, | ||
wait_for_ready=None, | ||
timeout=None, | ||
metadata=None, | ||
): | ||
return grpc.experimental.unary_unary( | ||
request, | ||
target, | ||
"/brain.Brain/persist_metrics", | ||
brain__pb2.JobMetrics.SerializeToString, | ||
google_dot_protobuf_dot_empty__pb2.Empty.FromString, | ||
options, | ||
channel_credentials, | ||
insecure, | ||
call_credentials, | ||
compression, | ||
wait_for_ready, | ||
timeout, | ||
metadata, | ||
) | ||
|
||
@staticmethod | ||
def optimize( | ||
request, | ||
target, | ||
options=(), | ||
channel_credentials=None, | ||
call_credentials=None, | ||
insecure=False, | ||
compression=None, | ||
wait_for_ready=None, | ||
timeout=None, | ||
metadata=None, | ||
): | ||
return grpc.experimental.unary_unary( | ||
request, | ||
target, | ||
"/brain.Brain/optimize", | ||
brain__pb2.OptimizeRequest.SerializeToString, | ||
brain__pb2.OptimizeResponse.FromString, | ||
options, | ||
channel_credentials, | ||
insecure, | ||
call_credentials, | ||
compression, | ||
wait_for_ready, | ||
timeout, | ||
metadata, | ||
) | ||
|
||
@staticmethod | ||
def get_job_metrics( | ||
request, | ||
target, | ||
options=(), | ||
channel_credentials=None, | ||
call_credentials=None, | ||
insecure=False, | ||
compression=None, | ||
wait_for_ready=None, | ||
timeout=None, | ||
metadata=None, | ||
): | ||
return grpc.experimental.unary_unary( | ||
request, | ||
target, | ||
"/brain.Brain/get_job_metrics", | ||
brain__pb2.JobMetricsRequest.SerializeToString, | ||
brain__pb2.JobMetricsResponse.FromString, | ||
options, | ||
channel_credentials, | ||
insecure, | ||
call_credentials, | ||
compression, | ||
wait_for_ready, | ||
timeout, | ||
metadata, | ||
) |
Oops, something went wrong.