-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating examples and readme files with the package configuration
- Loading branch information
Showing
4 changed files
with
60 additions
and
13 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Load the library | ||
source("functions.R") | ||
library(RElem) | ||
|
||
# Initialize Elemental/MPI | ||
Initialize() | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#TODO | ||
|
||
* Define namespace for the Elemental functions loaded | ||
* Create a package structure and/or include it in elemental building system | ||
* Create Makevars file, which explicitly links to elemental and the other libraries | ||
* Package Generation | ||
* Edit Makevars file, so it can search in multiple paths | ||
* Document all the functions | ||
* Add Examples | ||
* Restrict the functions, so they have datatype requirement specification | ||
* Add the functions for the other datatypes (integer, single, complex and double complex) | ||
* Add more MPI functions that can be useful | ||
* Try to generate more setup values for the functions i.e. orientation="NORMAL" and so on | ||
* Try to generate more default values for the functions i.e. orientation="NORMAL" and so on |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
\name{RElem-package} | ||
\alias{RElem-package} | ||
\alias{RElem} | ||
\docType{package} | ||
\title{ | ||
What the package does (short line) | ||
~~ package title ~~ | ||
} | ||
\description{ | ||
More about what it does (maybe more than one line) | ||
~~ A concise (1-5 lines) description of the package ~~ | ||
} | ||
\details{ | ||
\tabular{ll}{ | ||
Package: \tab pRElem\cr | ||
Type: \tab Package\cr | ||
Version: \tab 1.0\cr | ||
Date: \tab 2014-10-22\cr | ||
License: \tab What license is it under?\cr | ||
} | ||
~~ An overview of how to use the package, including the most important ~~ | ||
~~ functions ~~ | ||
} | ||
\author{ | ||
Who wrote it | ||
|
||
Maintainer: Who to complain to <yourfault@somewhere.net> | ||
~~ The author and/or maintainer of the package ~~ | ||
} | ||
\references{ | ||
~~ Literature or other references for background information ~~ | ||
} | ||
~~ Optionally other standard keywords, one per line, from file KEYWORDS in ~~ | ||
~~ the R documentation directory ~~ | ||
\keyword{ package } | ||
\seealso{ | ||
~~ Optional links to other man pages, e.g. ~~ | ||
~~ \code{\link[<pkg>:<pkg>-package]{<pkg>}} ~~ | ||
} | ||
\examples{ | ||
|
||
} |