Giter VIP home page Giter VIP logo

Comments (6)

LTLA avatar LTLA commented on May 31, 2024 1

In fact, I wonder whether it would be worth putting this into the package as an official unit test. This would check that the vignette's advice is correct across versions and across all CRAN systems.

from rcppannoy.

eddelbuettel avatar eddelbuettel commented on May 31, 2024

Hm, I just tried knitr::purl() and it failed returning an essentially empty file.

Looking more closely I see that your code chunks are just pandoc chunks for hightlighting (a mode I use myself all the time too). Short of cooking up a simple regexp expression, you can probably ask pandoc to extract these. But you'd have to look at how.

from rcppannoy.

LTLA avatar LTLA commented on May 31, 2024

Here's a script that will compile the C++ code in the vignette:

# Identify all 'cpp' code chunks.
X <- readLines("rcppannoy.Rmd")
starts <- grep("^```cpp$", X)
ends <- grep("^```$", X)

I <- findInterval(ends, starts)
keep <- !duplicated(I) & I>0L

code.I <- mapply(seq, from=starts+1L, to=ends[keep]-1L)
code.chunks <- X[unlist(code.I)]

# Add preprocessor statements, variables necessary for compilation.
end.pp <- grep("MyAnnoyIndex;$", code.chunks)
total <- c(
    head(code.chunks, end.pp),
    "#include <vector>",
    "#include <algorithm>",
    "// [[Rcpp::depends(RcppAnnoy)]]",
    "// [[Rcpp::export]]", 
    "Rcpp::IntegerVector testfun(Rcpp::NumericMatrix mat) {",
    "int c=0, K=5;",
    "std::vector<ANNOYTYPE> stub(mat.ncol());",
    "ANNOYTYPE* query=stub.data();",
    tail(code.chunks, -end.pp),
    "return Rcpp::IntegerVector(neighbor_index.begin(), neighbor_index.end());",
    "}"
)   

# Compile and execute as a test.
total <- paste(total, collapse="\n")
library(Rcpp)
out <- sourceCpp(code=total)
testfun(matrix(0, 10, 5))

from rcppannoy.

eddelbuettel avatar eddelbuettel commented on May 31, 2024

Nice one!

from rcppannoy.

eddelbuettel avatar eddelbuettel commented on May 31, 2024

You could of course just write it as a vignette too :)

```{Rcpp chunkone otheroption}
...
```

That said, I like the script and I also like the 'pandoc' mode of the vignette.

from rcppannoy.

LTLA avatar LTLA commented on May 31, 2024

Wow, I didn't realize knitr had a Rcpp engine. This is pretty neat, see #33.

from rcppannoy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.