Skip to content
Snippets Groups Projects
Commit 27b80b3e authored by Houssem ROUIS's avatar Houssem ROUIS
Browse files

fix warning for members order

parent 8f849fc9
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!178Learning backend cuda
...@@ -35,6 +35,9 @@ private: ...@@ -35,6 +35,9 @@ private:
// Desired size of the produced batches // Desired size of the produced batches
const std::size_t mBatchSize; const std::size_t mBatchSize;
// The backend for data tensors
std::string mBackend;
// Enable random shuffling for learning // Enable random shuffling for learning
const bool mShuffle; const bool mShuffle;
...@@ -56,8 +59,6 @@ private: ...@@ -56,8 +59,6 @@ private:
// Size of the Last batch // Size of the Last batch
std::size_t mLastBatchSize; std::size_t mLastBatchSize;
std::string mBackend;
// Store each modality dimensions, backend and type // Store each modality dimensions, backend and type
std::vector<std::vector<std::size_t>> mDataDims; std::vector<std::vector<std::size_t>> mDataDims;
std::vector<std::string> mDataBackends; std::vector<std::string> mDataBackends;
......
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