This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "whatever" | |
author: "John Doe" | |
--- | |
```{r} | |
ugly_code <- "a=function( x){1+1} " | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for llvm on macOS 10.13.6 | |
Build date: 2019-02-22 11:19:38 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Copy this file into config.site ## | |
CC="cc -xc99" | |
CFLAGS="-O -xlibmieee -xlibmil -xtarget=native -nofstore" | |
F77="f95" | |
FFLAGS='-O -libmil -xtarget=native -nofstore' | |
CXX="CC -library=stlport4" | |
CXXFLAGS="-O -xlibmil -xtarget=native -nofstore" | |
CXX1X="/opt/csw/bin/g++" | |
CXX1XFLAGS="-O2" | |
CXX1XPICFLAGS=-fPIC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(parallel) | |
## small/large obviously depend on the OS and memory available | |
n_small <- 1e2 | |
n_large <- 1e4 | |
## example from ?svd | |
hilbert <- function(n) { i <- 1:n; 1 / outer(i - 1, i, "+") } | |
my_svd <- function(..., n){ | |
X <- hilbert(n)[, 1:6] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for cereal on macOS 10.12.5 | |
Build date: 2017-06-09 10:24:28 |