Skip to content
  1. Jun 30, 2015
  2. Jun 19, 2015
  3. Jun 17, 2015
    • Vladimir Rutsky's avatar
      fix skipping of CUDA error when arch is not specified · e2824104
      Vladimir Rutsky authored
      Useful when compiling CUDA shaders on build server without NVidia GPU
      (but with NVidia CUDA Toolkit) and specifiying target GPU architecture
      with `options` argument.
      e2824104
    • Vladimir Rutsky's avatar
      add option to compile nvcc's fatbin · 45f06086
      Vladimir Rutsky authored
      Fatbin embeds prebuild for set of specified real architectures cubin's
      and PTX assemblies for set of specified virtual architectures, allowing
      driver to load prebuild cubin if there is any for current real GPU, or
      to assemble PTX from closest virtual GPU architecture.
      
      This can be used for distributing CUDA-powered applications without need
      to install NVidia CUDA Toolkit (nvcc) and development environment on
      target platform.
      
      .cu files can be precompiled to fatbin's on build server with
      
          fatbin = pycuda.compiler.compile(
              cu_file_text,
              options=[
                  "-gencode", "arch=compute_20,code=compute_20",
                  "-gencode", "arch=compute_20,code=sm_20",
                  "-gencode", "arch=compute_30,code=compute_30",
                  "-gencode", "arch=compute_30,code=sm_30",
      	],
              target="fatbin")
      
      fatbin's can be distributed on machines without nvcc and loaded using
      
          cuda_module = pycuda.driver.module_from_buffer(fatbin)
      45f06086
    • Andreas Klöckner's avatar
      Install mako for CI · 52fe3956
      Andreas Klöckner authored
      52fe3956
    • Andreas Klöckner's avatar
      Add CI config · ae9a61bd
      Andreas Klöckner authored
      ae9a61bd
  4. Jun 16, 2015
  5. May 30, 2015
  6. May 29, 2015
  7. May 27, 2015
  8. May 26, 2015
  9. May 23, 2015
  10. May 13, 2015
  11. May 11, 2015
  12. May 03, 2015
  13. Mar 04, 2015
  14. Jan 27, 2015
  15. Dec 19, 2014
  16. Dec 15, 2014
  17. Nov 12, 2014
  18. Nov 07, 2014
  19. Oct 31, 2014
  20. Oct 16, 2014
  21. Oct 08, 2014
  22. Sep 22, 2014
  23. Sep 19, 2014
Loading