[IMPR][MAJ] More precise type system
Adding data types in order to clarify usages and reduce conversion errors / arguments mismatch.
already in !13 (closed)
Merge request reports
Activity
changed milestone to %v0.1.0
added LanguageC++ Refactoring🎨 StatusReview Ready labels
- Resolved by laurent soulier
Why adding a new namespace named
detail
?
38 /// @details Tensor natural or mathematical coordinates could be defined as the 0-based 39 /// integral coordinates.<br> A TensorImpl which is a storage for an equivalent of a 40 /// multidimensionnal arrays arr[S(0)][S(1)]...[S(D-1)].<br> 41 /// Then mathematical coordinates for dimension i goes from 0 to S(i)-1, where S(i) is 42 /// TensorImpl size along this dimension.<br> 43 /// Yet, for application purpose, it might be needed to map Tensors elements to another 44 /// coordinate system. Typically, if a tensor is an extract of a larger one, its first 45 /// data (at null natural coordinates) may not be at the first position within the larger 46 /// one.<br> 47 /// These coordinates, in an application-defined frame, are called "logical 48 /// coordinates".<br> 49 /// So far, Aidge supports only an offset between natural and logical coordinates.<br> 50 /// @todo in a future version, different types might be used to distinguish between 51 /// natural and logical coordinates, natural coordinates type being necessarily an alias 52 /// for DimIdx_t. 53 using Coord_t = std::make_signed_t<std::size_t>; As you rightfully says, a size is a size, which is positive. World coordinates can be negative (view, convolution-like access on the edges,...), so a different type is required.
Besides they are semantically two distinct (though strongly related) entities.I don't see where there can be a confusion, see your own sentence: "which type use for coordinates?". My guess would be
Coord_t
.For now the whole framework has be created with positive coordinates only. The only usage of negative coordinates is for compatibility with ONNX when importing layers.
I would argue to have negative coordinates allowed everywhere or nowhere inside the core of the framework instead of switching from one another depending of the file.
- Resolved by laurent soulier
On one hand, I like the more complete system for converting
DataType
to classical types and conversely.But on the other hand, I find custom types even more confusing that before. It is hard to know what types are used and when there should be a conversion. We already had
DimSize_t
,DimIdx_t
,IOIndex_t
and now there is alsoCoord_t
that defines the same thing asDimSize_t
but with more complicated definition. What is the purpose of usingMakeInterger
when you already include the librarycstdint
?
- Resolved by laurent soulier
ALERT: on my local machine, this MR is breaking the cpu backend while it passes all unit tests on core.
I can't find what gets wrong (help would be appreciated).NB !13 (closed), which includes the new type system, I don't have this issue (backend unit tests are all passing on my side) so this MR !61 (closed) can be ignored if !13 (closed) is accepted as it is and if the current issue is not easily fixed.
added 40 commits
-
7afc3105...8953fc6e - 39 commits from branch
main
- 7f62a132 - [MERGE][origin/main][FIX] also fixing many errors in main branch
-
7afc3105...8953fc6e - 39 commits from branch
added 11 commits
-
7f62a132...6c460029 - 10 commits from branch
main
- 6cbc1a86 - [MERGE][origin/main]
-
7f62a132...6c460029 - 10 commits from branch
added 1 commit
- 610d9f20 - [feat/DataTypes][FIX] fixing duplicated const attribute
requested review from @cmoineau, @pineapple, @olivierbichler, and @vtemplier
requested review from @lsoulier
added 20 commits
-
610d9f20...63c7fe12 - 19 commits from branch
main
- da0a5968 - [MERGE][origin/main]
-
610d9f20...63c7fe12 - 19 commits from branch
changed milestone to %aidge_core - v0.2.0