Skip to content
Snippets Groups Projects

[IMPR][MAJ] More precise type system

Closed laurent soulier requested to merge feat/DataTypes into main
1 unresolved thread

Adding data types in order to clarify usages and reduce conversion errors / arguments mismatch.

already in !13 (closed)

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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>;
  • What is the purpose of introducing Coord_t as Tensor dimensions are already expressed with the custom type DimSize_t? Is it only for negative values? From what I understand, it only makes confusing which type use for coordinates.

  • Author Contributor

    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.

  • Author Contributor

    I'm not sure to understand your comment but for me, Coord_t AND DimSize_t (which have different usages) should be used everywhere.

  • If the MR was splitted in two: one for the DataType clarity and one for Coord_t, I would approve the first and discuss the second

  • Please register or sign in to reply
    • 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 also Coord_t that defines the same thing as DimSize_t but with more complicated definition. What is the purpose of using MakeInterger when you already include the library cstdint?

  • laurent soulier added 1 commit

    added 1 commit

    • 7afc3105 - [IMPR] getImpl throw if no impl

    Compare with previous version

    • Author Contributor
      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.

  • laurent soulier added 40 commits

    added 40 commits

    Compare with previous version

  • laurent soulier added 11 commits

    added 11 commits

    Compare with previous version

  • laurent soulier added 1 commit

    added 1 commit

    Compare with previous version

  • laurent soulier added 1 commit

    added 1 commit

    • 610d9f20 - [feat/DataTypes][FIX] fixing duplicated const attribute

    Compare with previous version

  • laurent soulier requested review from @lsoulier

    requested review from @lsoulier

  • laurent soulier resolved all threads

    resolved all threads

  • laurent soulier added 20 commits

    added 20 commits

    Compare with previous version

  • changed milestone to %aidge_core - v0.2.0

  • I close this MR for the moment has it is stale. We may reopen it when needed.

  • closed

  • Please register or sign in to reply
    Loading