Skip to content

Commit

Permalink
Merge branch 'pr-137'
Browse files Browse the repository at this point in the history
  • Loading branch information
olajep committed Jun 13, 2015
2 parents 42a49a3 + 63d2932 commit 613968e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,30 @@ Instructions for contributing can be found [HERE](CONTRIBUTING.md).

##Build Instructions

Install Pre-requisites:
###Install Prerequisites
``` bash
$ sudo apt-get install libtool build-essential pkg-config autoconf doxygen check
```

Build Sequence:
###Build Sequence

``` bash
$ ./bootstrap
$ ./configure
$ make
```

###Testing

To run the automated unit tests you need to run
``` bash
$ make check
```

For this to succeed you need to have the check unit test library (http://check.sourceforge.net).
See [prerequisites](#install-prerequisites).


##A Simple Example
The following sample shows how to use PAL launch a simple task on a remote processor within the system. The program flow should be familiar to anyone who has used accelerator programming frameworks.

Expand Down
7 changes: 4 additions & 3 deletions tests/math/README
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
To add a new function to test suite
1.) Add line to run.sh with correct arguments
2.) Make sure entry is in test_main
1.) Update Makefile.am. You should need to add two lines, just follow the
examples of the existing tests.
2.) Create a reference implementation of the function. This will be in a file
like p_sin.c in this directory.
3.) Add a .dat file with comma separate columns. The last column contains
the expected results

STILL TODO:
sort
max
min
sincos
mode

0 comments on commit 613968e

Please sign in to comment.