Skip to content
Snippets Groups Projects

Adding INT64 Tensor support

Merged Cyril Moineau requested to merge dev into master

Adding INT64 Tensor support

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
89 std::copy(static_cast<const int32_t*>(src), static_cast<const int32_t*>(src) + length,
90 static_cast<T *>(rawPtr()));
91 break;
92 case DataType::UInt32:
93 std::copy(static_cast<const uint32_t*>(src), static_cast<const uint32_t*>(src) + length,
94 static_cast<T *>(rawPtr()));
95 break;
96 case DataType::Int16:
97 std::copy(static_cast<const int16_t*>(src), static_cast<const int16_t*>(src) + length,
98 static_cast<T *>(rawPtr()));
99 break;
100 case DataType::UInt16:
101 std::copy(static_cast<const uint16_t*>(src), static_cast<const uint16_t*>(src) + length,
102 static_cast<T *>(rawPtr()));
103 break;
104 case ataType::Int8:
  • Cyril Moineau added 1 commit

    added 1 commit

    • c7e702f6 - Fix typo ataType -> DataType.

    Compare with previous version

  • Maxence Naud added 2 commits

    added 2 commits

    • 1d453e58 - Slight optimization of TensorImpl_cpu
    • bec69644 - Merge branch 'dev' of gitlab.eclipse.org:eclipse/aidge/aidge_backend_cpu into dev

    Compare with previous version

  • Maxence Naud enabled an automatic merge when the pipeline for bec69644 succeeds

    enabled an automatic merge when the pipeline for bec69644 succeeds

  • Cyril Moineau aborted the automatic merge because source branch was updated

    aborted the automatic merge because source branch was updated

  • Cyril Moineau added 2 commits

    added 2 commits

    • b94de272 - Update integer conversion test to fix issue with int64.
    • ab92e03e - Merge branch 'dev' of gitlab.eclipse.org:eclipse/aidge/aidge_backend_cpu into dev

    Compare with previous version

  • Maxence Naud enabled an automatic merge when the pipeline for ab92e03e succeeds

    enabled an automatic merge when the pipeline for ab92e03e succeeds

  • Maxence Naud changed milestone to %v0.1.0

    changed milestone to %v0.1.0

  • Maxence Naud requested review from @pineapple

    requested review from @pineapple

  • assigned to @pineapple

  • Maxence Naud aborted the automatic merge because source branch was updated

    aborted the automatic merge because source branch was updated

  • Maxence Naud added 1 commit

    added 1 commit

    • 624670bf - Fix type bug in test_tensor.py

    Compare with previous version

  • Maxence Naud enabled an automatic merge when the pipeline for 624670bf succeeds

    enabled an automatic merge when the pipeline for 624670bf succeeds

  • merged

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading