[Rcpp-commits] r1638 - in pkg/Rcpp/inst: . include

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun Jun 20 04:28:26 CEST 2010


Author: edd
Date: 2010-06-20 04:28:24 +0200 (Sun, 20 Jun 2010)
New Revision: 1638

Modified:
   pkg/Rcpp/inst/ChangeLog
   pkg/Rcpp/inst/include/RcppDoxygenExamples.h
Log:
fixed paths for ConvolveBenchmark files, added FastKM example files


Modified: pkg/Rcpp/inst/ChangeLog
===================================================================
--- pkg/Rcpp/inst/ChangeLog	2010-06-19 21:48:38 UTC (rev 1637)
+++ pkg/Rcpp/inst/ChangeLog	2010-06-20 02:28:24 UTC (rev 1638)
@@ -1,7 +1,12 @@
+2010-06-19  Dirk Eddelbuettel  <edd at debian.org>
+
+	* inst/include/RcppDoxygenExamples.h: Correct three wrong paths for
+	ConvolveBenchmak example files, and add missing FastLM/ examples
+
 2010-06-17  Romain Francois <romain at r-enthusiasts.com>
 
 	* inst/include/Rcpp/Vector.h: split into more manageable files
-	
+
 	* inst/include/Rcpp/vector/VectorBase.h: simplify the VectorBase class
 	so that it is just implementing CRTP. It does not inherit from RObject anymore.
 	This will help implementation of sugar.

Modified: pkg/Rcpp/inst/include/RcppDoxygenExamples.h
===================================================================
--- pkg/Rcpp/inst/include/RcppDoxygenExamples.h	2010-06-19 21:48:38 UTC (rev 1637)
+++ pkg/Rcpp/inst/include/RcppDoxygenExamples.h	2010-06-20 02:28:24 UTC (rev 1638)
@@ -74,15 +74,15 @@
 //! \example ConvolveBenchmarks/convolve2_c.c
 //! The basic convolution example from Section 5.10.1 of 'Writing R Extensions'
 
-//! \example ConvolveBenchmarks/convolve2_cpp.c
+//! \example ConvolveBenchmarks/convolve2_cpp.cpp
 //! A simple version of the basic convolution example from Section 5.10.1 
 //! of 'Writing R Extensions', now rewritten for Rcpp using RcppVector<double>.
 
-//! \example ConvolveBenchmarks/convolve3_cpp.c
+//! \example ConvolveBenchmarks/convolve3_cpp.cpp
 //! A more efficient version of the basic convolution example from Section 5.10.1 
 //! of 'Writing R Extensions', now rewritten for Rcpp and using Rcpp::NumericVector.
 
-//! \example ConvolveBenchmarks/convolve4_cpp.c
+//! \example ConvolveBenchmarks/convolve4_cpp.cpp
 //! An even more efficient version of the basic convolution example from Section 5.10.1 
 //! of 'Writing R Extensions', now rewritten for Rcpp and using Rcpp::NumericVector as
 //! well as direct pointer operations for better performance.
@@ -93,3 +93,22 @@
 
 //! \example ConvolveBenchmarks/exampleRCode.r
 //! R file / littler script to run and time the various implementations.
+
+
+//! \example FastLM/benchmark.r
+//! Linear model benchmark master file
+
+//! \example FastLM/fastLMviaArmadillo.r
+//! Runs lm via Armadillo and times the run
+
+//! \example FastLM/fastLMviaGSL.r
+//! Runs lm via GSL and times the run
+
+//! \example FastLM/lmArmadillo.r
+//! Armadillo-based implementation of a bare-boned lm()
+
+//! \example FastLM/lmGSL.r
+//! GSL-based implementation of a bare-boned lm()
+
+
+



More information about the Rcpp-commits mailing list