Skip to content
Snippets Groups Projects
  1. Aug 03, 2021
  2. Aug 02, 2021
  3. Jul 30, 2021
  4. Jul 29, 2021
  5. Jul 28, 2021
    • Kenneth Moreland's avatar
      Add RuntimeDeviceTracker::CopyState · 62411796
      Kenneth Moreland authored
      It is sometimes the case that you want to copy the state of one
      `RuntimeDeviceTracker` to another. This is particularly the case when
      creating threads in the control environment. Each thread has its own
      copy of `RuntimeDeviceTracker`, so when you spawn a thread you probably
      want to copy the state of the tracker from the calling thread.
      62411796
    • Kenneth Moreland's avatar
      Deprecate ArrayHandle::GetDeviceAdapterId · 34615a98
      Kenneth Moreland authored
      This method is a remenant of when `ArrayHandle` could only store data on
      one device at a time. It is now capable of storing data on any number of
      devices (as well as the host), so asking for "the" device no longer
      makes sense. Thus, this method is deprecated in favor of
      `ArrayHandle::IsOnDevice`.
      
      This deprecation leads to fixing some older functionality that still
      assumed data could only be on one device at a time.
      
      Fixes #592.
      34615a98
  6. Jul 21, 2021
  7. Jul 16, 2021
  8. Jul 15, 2021
    • Gunther Weber's avatar
    • Kenneth Moreland's avatar
      Update code to use ArrayCopyShallowIfPossible · 1fb11417
      Kenneth Moreland authored
      There were several places in the code that had to check the type of an
      `UnknownArrayHandle` and conditionally get or copy that array. This code
      is simplified by using `ArrayCopyShallowIfPossible`.
      1fb11417
    • Kenneth Moreland's avatar
      Add ArrayCopyShallowIfPossible · 5c36eafe
      Kenneth Moreland authored
      Often times you have an array of an unknown type (likely from a data set),
      and you need it to be of a particular type (or can make a reasonable but
      uncertain assumption about it being a particular type). You really just
      want a shallow copy (a reference in a concrete `ArrayHandle`) if that is
      possible.
      
      `ArrayCopyShallowIfPossible` pulls an array of a specific type from an
      `UnknownArrayHandle`. If the type is compatible, it will perform a shallow
      copy. If it is not possible, a deep copy is performed to get it to the
      correct type.
      
      Fixes #572.
      5c36eafe
  9. Jul 14, 2021
  10. Jul 13, 2021
  11. Jul 12, 2021
  12. Jun 30, 2021
  13. Jun 28, 2021
Loading