Nothing
test_that("ggml_version works", {
expect_equal(ggml_version(), "0.11.0")
})
test_that("ggml_test works", {
expect_true(ggml_test())
})
test_that("ggml context can be created and freed", {
ctx <- ggml_init(1024 * 1024) # 1MB
expect_type(ctx, "externalptr")
# Освобождение контекста
expect_silent(ggml_free(ctx))
})
test_that("ggml_init handles invalid input", {
skip("Platform-dependent behavior")
})
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.