Skip to content

Commit

Permalink
Merge branch 'intelligent-machine-learning:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
jinqinn authored Oct 30, 2024
2 parents abe2a0d + 186783e commit eb3797e
Show file tree
Hide file tree
Showing 20 changed files with 4,888 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ repos:
rev: v2.2.3
hooks:
- id: flake8
exclude: dlrover/proto/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.812
hooks:
- id: mypy
args: [--ignore-missing-imports, --follow-imports=skip]
exclude: dlrover/proto/
- repo: local
hooks:
- id: clang-format
Expand Down
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ coverage:
ignore:
- "dlrover/trainer/torch/flash_checkpoint/megatron_dist_ckpt.py"
- "dlrover/trainer/torch/node_check/utils.py"
- "dlrover/proto"
status:
changes: false
default_rules:
Expand Down
9 changes: 3 additions & 6 deletions dlrover/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@ CXX = g++

all: python_pb go_pb

python_pb: dlrover/proto/elastic_training.proto
$(PYTHON) -m grpc_tools.protoc -I. \
dlrover/proto/elastic_training.proto --python_out=. --grpc_python_out=.
$(PYTHON) -m grpc_tools.protoc -I. \
dlrover/proto/brain.proto --python_out=. --grpc_python_out=.
python_pb: dlrover/proto/elastic_training.proto dlrover/proto/brain.proto
/bin/sh scripts/build_proto.sh

go_pb: dlrover/proto/brain.proto
protoc -I. dlrover/proto/brain.proto --go_out=plugins=grpc:.
protoc -I. dlrover/proto/brain.proto --go_out=plugins=grpc:.
47 changes: 47 additions & 0 deletions dlrover/proto/__init__.py
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",
]
12 changes: 12 additions & 0 deletions dlrover/proto/protobuf_3_20_3/__init__.py
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.
3,632 changes: 3,632 additions & 0 deletions dlrover/proto/protobuf_3_20_3/brain_pb2.py

Large diffs are not rendered by default.

183 changes: 183 additions & 0 deletions dlrover/proto/protobuf_3_20_3/brain_pb2_grpc.py
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,
)
Loading

0 comments on commit eb3797e

Please sign in to comment.