R/wordspace_openmp.R

wordspace.openmp <- function (threads=NULL) {
  if (!is.null(threads)) {
    if (!(is.numeric(threads) && length(threads) == 1 && threads >= 1)) stop("argument threads= must be a single integer >= 1")
    CPP_set_openmp_threads(threads)
  }
  res <- CPP_get_openmp_threads()
  if (is.null(threads)) res else invisible(res)
}

Try the wordspace package in your browser

Any scripts or data that you put into this service are public.

wordspace documentation built on Sept. 9, 2022, 3:04 p.m.