has_libcuml: Determine whether cuml was linked to a valid version of the...

Description Usage Value Examples

Description

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

Usage

1

Value

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

Examples

1
2
3
4
5
6
7
8
library(cuml)

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

cuml documentation built on Sept. 21, 2021, 1:06 a.m.

Related to has_libcuml in cuml...