Nothing
#' Set Number of Threads
#'
#' Set the number of threads for GGML operations
#'
#' @param n_threads Number of threads to use
#' @return Number of threads set
#' @export
#' @examples
#' \donttest{
#' # Use 4 threads
#' ggml_set_n_threads(4)
#'
#' # Use all available cores
#' ggml_set_n_threads(parallel::detectCores())
#' }
ggml_set_n_threads <- function(n_threads) {
.Call("R_ggml_set_n_threads", as.integer(n_threads))
}
#' Get Number of Threads
#'
#' Get the current number of threads for GGML operations
#'
#' @return Number of threads
#' @export
#' @examples
#' \donttest{
#' ggml_get_n_threads()
#' }
ggml_get_n_threads <- function() {
.Call("R_ggml_get_n_threads")
}
#' Set OpenMP Thread Count
#'
#' Directly calls omp_set_num_threads() to limit OpenMP parallelism.
#' Useful in tests to comply with CRAN policy on core usage.
#'
#' @param n Number of threads
#' @return NULL invisibly
#' @export
ggml_set_omp_threads <- function(n) {
invisible(.Call("R_ggml_set_omp_threads", as.integer(n)))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.