fix format

This commit is contained in:
panzezhong 2023-09-14 16:47:47 +08:00
parent 6ce2111842
commit 39f1310343
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class GraphObj : public Object {
}
void dumpOp(Operator op) { dump.dumpOp(op); }
Dump& getDump() { return dump; }
Dump &getDump() { return dump; }
void deleteConnection(Tensor tensor, Operator op);
void addConnection(Tensor tensor, Operator op);

View File

@ -44,7 +44,7 @@ class TensorBaseObj : public Object {
}
DataType getDType() const { return dtype; }
int getDTypeCode() const {return dtype.getIndex();}
int getDTypeCode() const { return dtype.getIndex(); }
Runtime getRuntime() const { return runtime; }
// std::pair<Operator *, int> getOutputOfWithIndex();