Skip to content
Snippets Groups Projects
Commit f1b503a0 authored by Maxence Naud's avatar Maxence Naud
Browse files

[Fix] Datatype to DataType everywhere

parent 52272348
No related branches found
No related tags found
No related merge requests found
......@@ -299,7 +299,7 @@ class Tensor : public Data,
*/
Tensor &operator=(const Tensor &t) {
resize(t.dims());
setDatatype(t.dataType());
setDataType(t.dataType());
if (t.hasImpl()) {
setBackend(t.mImpl->backend());
mImpl->copy(t.mImpl->rawPtr(), size());
......@@ -362,7 +362,7 @@ class Tensor : public Data,
* if the Tensor has already been initialized.
* @param dt DataType.
*/
void setDatatype(const DataType dt) {
void setDataType(const DataType dt) {
if (mImpl && (dataType() != dt)) {
// get ptr before changing Tensor backend or the type difference will trigger a warning
const void *data = mImpl->rawPtr();
......
......@@ -186,7 +186,7 @@ public:
/** @brief Set the same backend for each Operator of the GraphView object's Nodes. */
void setBackend(const std::string &backend);
/** @brief Set the same backend for each Operator of the GraphView object's Nodes. */
void setDatatype(const DataType &datatype);
void setDataType(const DataType &datatype);
///////////////////////////////////////////////////////
// TOPOLOGY
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment