Browse Source

!5721 Modify alarm

Merge pull request !5721 from shenwei41/sw_master
tags/v1.0.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
bdf9617730
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      mindspore/ccsrc/minddata/dataset/engine/datasetops/source/album_op.cc
  2. +1
    -1
      mindspore/ccsrc/minddata/dataset/engine/gnn/grpc_async_server.cc

+ 2
- 2
mindspore/ccsrc/minddata/dataset/engine/datasetops/source/album_op.cc View File

@@ -36,8 +36,8 @@ AlbumOp::Builder::Builder() : builder_decode_(false), builder_sampler_(nullptr),
Status AlbumOp::Builder::Build(std::shared_ptr<AlbumOp> *ptr) {
RETURN_IF_NOT_OK(SanityCheck());
if (builder_sampler_ == nullptr) {
int64_t num_samples = 0; // default num samples of 0 means to sample entire set of data
int64_t start_index = 0;
const int64_t num_samples = 0; // default num samples of 0 means to sample entire set of data
const int64_t start_index = 0;
builder_sampler_ = std::make_shared<SequentialSampler>(start_index, num_samples);
}



+ 1
- 1
mindspore/ccsrc/minddata/dataset/engine/gnn/grpc_async_server.cc View File

@@ -51,7 +51,7 @@ Status GrpcAsyncServer::Run() {
}

Status GrpcAsyncServer::HandleRequest() {
bool success;
bool success = false;
void *tag;
// We loop through the grpc queue. Each connection if successful
// will come back with our own tag which is an instance of CallData


Loading…
Cancel
Save