Skip to content
Snippets Groups Projects
  1. Oct 03, 2022
  2. Sep 30, 2022
  3. Dec 15, 2021
  4. Aug 02, 2021
    • Kenneth Moreland's avatar
      Turn on CUDA warnings for unknown stack sizes · fc58f4ed
      Kenneth Moreland authored
      These were previously suppressed because they are unavoidable when
      calling virtual methods. But we no longer support virtual methods on
      devices (it is deprecated).
      
      These warnings can still happen if you have unbounded recursion. But we
      would like to avoid unbounded recursion, so we would like to see these
      warnings.
      
      Also turned on other nvlink warnings, which include when a recursive
      function call means that the compiler cannot figure out the full
      stack depth.
      fc58f4ed
  5. Sep 21, 2020
  6. Jun 01, 2020
  7. Apr 17, 2019
  8. Apr 09, 2019
  9. Apr 03, 2019
  10. Mar 21, 2019
    • Kenneth Moreland's avatar
      Suppress nvlink warnings about virtual methods not used · 5960b8ab
      Kenneth Moreland authored
      Any time there is a CUDA device class that has virtual methods,
      nvlink will issue a warning if the resulting library is linked
      into code that does not use that method, so we basically have
      to suppress these warnings for any execution environment class
      with virtual methods.
      5960b8ab
  11. Mar 14, 2019
  12. Feb 11, 2019
  13. Jan 10, 2019
  14. Dec 27, 2018
  15. Jun 28, 2018
  16. Jun 27, 2018
  17. Jun 05, 2018
  18. May 10, 2018
  19. May 08, 2018
  20. Feb 26, 2018
  21. Jan 31, 2018
  22. Jan 30, 2018
  23. Jan 03, 2018
  24. Sep 20, 2017
    • Kenneth Moreland's avatar
      Update copyright for Sandia · c3a3184d
      Kenneth Moreland authored
      Sandia National Laboratories recently changed management from the
      Sandia Corporation to the National Technology & Engineering Solutions
      of Sandia, LLC (NTESS). The copyright statements need to be updated
      accordingly.
      c3a3184d
  25. Mar 18, 2016
  26. Mar 17, 2016
  27. May 21, 2015
  28. Dec 19, 2014
    • Robert Maynard's avatar
      Adding a cuda device adapter to vtkm. · d9270e40
      Robert Maynard authored
      Porting the dax device adapter over to vtkm. Unlike the dax version, doesn't
      use the thrust::device_vector, but instead uses thrust::system calls so that
      we can support multiple thrust based backends.
      
      Also this has Texture Memory support for input array handles. Some more work
      will need to be done to ArrayHandle so that everything works when using an
      ArrayHandle inplace with texture memory bindings.
      d9270e40
  29. Oct 21, 2014
    • Kenneth Moreland's avatar
      Add basic dispatcher functionality. · 53a454fe
      Kenneth Moreland authored
      These changes support the implementation of DispatcherBase. This class
      provides the basic functionality for calling an Invoke method in the
      control environment, transferring data to the execution environment,
      scheduling threads in the execution environment, pulling data for each
      calling of the worklet method, and actually calling the worklet.
      53a454fe
  30. Jun 10, 2014
  31. Apr 24, 2014
    • Kenneth Moreland's avatar
      Add FunctionInterface class. · ebc20b43
      Kenneth Moreland authored
      The FunctionInterface class is a convienient way to wrap up a variable
      number of arguments and pass them around templated interfaces without
      requiring variadic template arguments. It also correctly hands return
      arguments.
      ebc20b43
  32. Feb 10, 2014
Loading