format code

This commit is contained in:
caifubi 2020-04-30 09:33:33 +08:00
parent ebe5c2a610
commit cb70daa355
2 changed files with 4 additions and 7 deletions

View File

@ -102,9 +102,8 @@ void RandomDataOp::Print(std::ostream &out, bool show_all) const {
// Call the super class for displaying any common detailed info
ParallelOp::Print(out, show_all);
// Then show any custom derived-internal stuff
out << "\nTotal_rows: " << total_rows_
<< "\nRows per buffer: " << rows_per_buffer_
<< "\nSchema:\n" << *data_schema_ << "\n\n";
out << "\nTotal_rows: " << total_rows_ << "\nRows per buffer: " << rows_per_buffer_ << "\nSchema:\n"
<< *data_schema_ << "\n\n";
}
}
@ -143,8 +142,7 @@ Status RandomDataOp::GenerateSchema() {
// Create the column descriptor
std::string colName = "c" + std::to_string(i);
newCol = std::make_unique<ColDescriptor>(colName, DataType(newType), TensorImpl::kFlexible, rank,
newShape.get());
newCol = std::make_unique<ColDescriptor>(colName, DataType(newType), TensorImpl::kFlexible, rank, newShape.get());
data_schema_->AddColumn(*newCol);
}
@ -411,4 +409,3 @@ Status RandomDataOp::Reset() {
}
} // namespace dataset
} // namespace mindspore

View File

@ -57,7 +57,7 @@ class AscendKernelRuntime : public KernelRuntime {
void ReleaseDeviceRes() override;
bool GraphWithEmptyTaskList(const session::KernelGraph *graph) const;
bool CheckGraphIdValid(GraphId graph_id) const;
static void DebugTaskIdName(GraphId graph_id) ;
static void DebugTaskIdName(GraphId graph_id);
rtContext_t rt_context_{nullptr};
bool initialized_{false};