Learn R Programming

cuml (version 0.2.1)

has_libcuml: Determine whether cuml was linked to a valid version of the RAPIDS cuML shared library.

Description

Determine whether cuml was linked to a valid version of the RAPIDS cuML shared library.

Usage

has_libcuml()

Arguments

Value

A logical value indicating whether the current installation cuml was linked to a valid version of the RAPIDS cuML shared library.

Examples

Run this code
# NOT RUN {
library(cuml)

if (!has_libcuml()) {
  warning(
    "Please install the RAPIDS cuML shared library first, and then re-",
    "install {cuml}."
  )
}
# }

Run the code above in your browser using DataLab