Skip to content

Commit

Permalink
update libpll, increase version number to 0.3.0b
Browse files Browse the repository at this point in the history
  • Loading branch information
amkozlov committed Apr 26, 2017
1 parent 92e792f commit d7a86ce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ You can see some of the planned features [here](https://github.com/amkozlov/raxm
## Installation instructions

* For most desktop Unix/Linux and macOS systems, the easiest way to install RAxML-NG is by using the pre-compiled binary:
[**Download 64-bit Linux binary**](https://github.com/amkozlov/raxml-ng/releases/download/0.2.0/raxml-ng_v0.2.0b_linux_x86_64.zip)
[**Download 64-bit OSX/macOS binary**](https://github.com/amkozlov/raxml-ng/releases/download/0.2.0/raxml-ng_v0.2.0b_macos_x86_64.zip)
[**Download 64-bit Linux binary**](https://github.com/amkozlov/raxml-ng/releases/download/0.3.0/raxml-ng_v0.3.0b_linux_x86_64.zip)
[**Download 64-bit OSX/macOS binary**](https://github.com/amkozlov/raxml-ng/releases/download/0.3.0/raxml-ng_v0.3.0b_macos_x86_64.zip)

* For clusters/supercomputers (i.e., if you want to use MPI), please use the following installation package which contains pre-built *libpll*. You will need `GCC 4.8+` and `CMake 2.8+` to compile RAxML-NG for your system.
[**Download RAxML-NG-MPI for Linux**](https://github.com/amkozlov/raxml-ng/releases/download/0.2.0/raxml-ng_v0.2.0b_linux_x86_64_MPI.zip)
* For clusters/supercomputers (i.e., if you want to use MPI), please use the following installation package which contains pre-built *libpll*. You will need `GCC 4.8+` and `CMake 2.8+` in order to compile RAxML-NG for your system.
[**Download RAxML-NG-MPI for Linux**](https://github.com/amkozlov/raxml-ng/releases/download/0.3.0/raxml-ng_v0.3.0b_linux_x86_64_MPI.zip)

* Binaries for Windows will become available later on

Expand Down
2 changes: 1 addition & 1 deletion libs/pll-modules
Submodule pll-modules updated 1 files
+1 −1 libs/libpll
5 changes: 2 additions & 3 deletions src/TreeInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,9 @@ pll_partition_t* create_pll_partition(const Options& opts, const PartitionInfo&
{
attrs |= PLL_ATTRIB_RATE_SCALERS;

if (model.num_states() != 4 ||
(opts.simd_arch != PLL_ATTRIB_ARCH_AVX && opts.simd_arch != PLL_ATTRIB_ARCH_AVX2))
if (model.num_states() != 4)
{
throw runtime_error("Per-rate scalers are implemented for DNA with AVX/AVX2 vectorization only!\n");
throw runtime_error("Per-rate scalers are implemented for DNA data only!\n");
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#define RAXML_VERSION "0.2.1 BETA"
#define RAXML_DATE "20.04.2017"
#define RAXML_VERSION "0.3.0 BETA"
#define RAXML_DATE "27.04.2017"

0 comments on commit d7a86ce

Please sign in to comment.