Package: ggmlR
Type: Package
Title: 'GGML' Tensor Operations for Machine Learning
Version: 0.6.1
Authors@R: c(
    person("Yuri", "Baramykov",
        email = "lbsbmsu@mail.ru",
        role = c("aut", "cre")),
    person("Georgi", "Gerganov",
        role = c("ctb", "cph"),
        comment = "Author of the GGML library"),
    person("Jeffrey", "Quesnelle",
        role = c("ctb", "cph"),
        comment = "Contributor to ops.cpp"),
    person("Bowen", "Peng",
        role = c("ctb", "cph"),
        comment = "Contributor to ops.cpp"),
    person("Mozilla Foundation",
        role = c("ctb", "cph"),
        comment = "Author of llamafile/sgemm.cpp")
    )
Description: Provides 'R' bindings to the 'GGML' tensor library for machine
    learning, designed primarily for 'Vulkan' GPU acceleration with full CPU
    fallback. 'Vulkan' support is auto-detected at build time on Linux (when
    'libvulkan-dev' and 'glslc' are installed) and on Windows (when 'Vulkan'
    'SDK' is installed and 'VULKAN_SDK' environment variable is set); all
    operations fall back to CPU transparently when no GPU is available.
    Implements tensor operations, neural network layers, quantization, and a
    'Keras'-like sequential model API for building and training networks.
    Includes 'AdamW' (Adam with Weight decay) and 'SGD' (Stochastic Gradient
    Descent) optimizers with 'MSE' (Mean Squared Error) and cross-entropy
    losses. Also provides a dynamic 'autograd' engine ('PyTorch'-style) with
    data-parallel training via 'dp_train()', broadcast arithmetic, 'f16'
    (half-precision) support on 'Vulkan' GPU, and a multi-head attention layer
    for building Transformer architectures. Serves as backend for 'LLM' (Large
    Language Model) inference via 'llamaR' and Stable Diffusion image
    generation via 'sdR'. See <https://github.com/ggml-org/ggml> for more
    information about the underlying library.
Depends: R (>= 4.1.0)
License: MIT + file LICENSE
URL: https://github.com/Zabis13/ggmlR
BugReports: https://github.com/Zabis13/ggmlR/issues
Encoding: UTF-8
SystemRequirements: C++17, GNU make, libvulkan-dev, glslc (optional,
        for GPU on Linux), 'Vulkan' 'SDK' (optional, for GPU on
        Windows)
Suggests: testthat (>= 3.0.0)
RoxygenNote: 7.3.3
Config/testthat/edition: 3
NeedsCompilation: yes
Packaged: 2026-02-22 18:26:20 UTC; yuri
Author: Yuri Baramykov [aut, cre],
  Georgi Gerganov [ctb, cph] (Author of the GGML library),
  Jeffrey Quesnelle [ctb, cph] (Contributor to ops.cpp),
  Bowen Peng [ctb, cph] (Contributor to ops.cpp),
  Mozilla Foundation [ctb, cph] (Author of llamafile/sgemm.cpp)
Maintainer: Yuri Baramykov <lbsbmsu@mail.ru>
Repository: CRAN
Date/Publication: 2026-02-22 23:00:08 UTC
Built: R 4.4.3; x86_64-w64-mingw32; 2026-02-23 11:02:51 UTC; windows
Archs: x64
