1. 11 Nov, 2025 1 commit
  2. 10 Nov, 2025 1 commit
  3. 08 Nov, 2025 3 commits
  4. 07 Nov, 2025 2 commits
  5. 06 Nov, 2025 15 commits
  6. 05 Nov, 2025 13 commits
  7. 04 Nov, 2025 5 commits
    • Daniel Hiltgen's avatar
      discovery: only retry AMD GPUs (#12894) · 27f1fde4
      Daniel Hiltgen authored
      * discovery: only retry AMD GPUs
      
      CUDA and Vulkan don't crash on unsupported devices, so retry isn't necessary.
      This also refactors the code to shift the Library specific logic into the ml
      package.
      
      * review comments
      27f1fde4
    • virajwad's avatar
      vulkan: Add memory detection for Intel GPU using DXGI+PDH (#12664) · 220e133f
      virajwad authored
      * PDH free memory skeleton
      
      * Add PDH printing
      
      * Add LUID support for Vulkan
      
      * wire luid from ggml-vulkan to mem-dxgi-pdh file
      
      * Fix to ggml-impl
      
      * Continue skeleton
      
      * Implemented ggml_dxgi_pdh_get_device_memory
      
      * fix comments
      
      * Fix - change value GB to bytes
      
      * add ifdefs to only support windows and not linux
      
      * modify error codes
      
      * Finished ggml_dxgi_pdh_init() function
      
      * completed ggml_dxgi_pdh_release()
      
      * Formatting changes, add static to functions
      
      * fix build errors
      
      * fix go build error
      
      * fix luid - now should match between dxgi and vulkan
      
      * Fix the free memory reporting (was using copy by value, change to reference)
      
      * keep only dxgi1_2.h
      
      * Modifications based on PR feedback
      
      * fix merge conflicts (2) and fix desc1.description printout
      
      * move dxgi + pdh api calls to before the vendor specific library calls
      
      * change from 3 samples to 1 sample for PDH
      
      * modify when old_mode is set
      
      * add fix for building MacOS
      
      * fix release and returns for other vendors
      
      * add patch file
      220e133f
    • Daniel Hiltgen's avatar
      app: add code for macOS and Windows apps under 'app' (#12933) · d3b4b997
      Daniel Hiltgen authored
      
      
      * app: add code for macOS and Windows apps under 'app'
      
      * app: add readme
      
      * app: windows and linux only for now
      
      * ci: fix ui CI validation
      
      ---------
      Co-authored-by: default avatarjmorganca <jmorganca@gmail.com>
      d3b4b997
    • Daniel Hiltgen's avatar
      vulkan: enable flash attention (#12937) · a4770107
      Daniel Hiltgen authored
      Also adjusts the vulkan windows build pattern to match recent changes in other backends
      so incremental builds are faster.
      a4770107
    • Jesse Gross's avatar
      ggml: Increase maximum graph size · ef549d51
      Jesse Gross authored
      The initial implementation of qwen3-vl:235b exceeded the maximum graph
      size based on the number of tensors. Although this was later fixed
      through the use of the mrope operation, we are close to the limit in
      some cases. This updates to track the current llama.cpp usage of GGML.
      ef549d51