Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document building FastRGF with Clang and AppleClang #319

Merged
merged 4 commits into from
Mar 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions FastRGF/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.7 (Feb 2020)

- Added support for compilation with Clang and AppleClang.

## 0.6 (Feb 2018)

- Fixed bug which led to program crash in case of usage of small samples weights.
Expand Down
4 changes: 2 additions & 2 deletions FastRGF/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FastRGF Version 0.6
# FastRGF Version 0.7

### C++ Multi-core Implementation of Regularized Greedy Forest (RGF)

Expand Down Expand Up @@ -46,7 +46,7 @@ The implementation of greedy tree node optimization employs second order Newton

# 2. Installation

The software is written in C++11 and requires to be built from the sources with the **g++** compiler. Note that compilation only with g++-5 and newer versions is possible. Other compilers are unsupported and older versions produce corrupted files.
The software is written in C++11 and requires to be built from the sources with the **g++**, **Clang** or **AppleClang** compiler. Note that compilation only with g++-5, Clang 3.8, AppleClang 8.1 (or newer versions) is possible. Other compilers are unsupported and older versions produce corrupted files. In case you are compiling with the AppleClang compiler, you should install OpenMP separately.

[Download](https://github.com/RGF-team/rgf/archive/master.zip) the package and extract the content. Otherwise, you can use git

Expand Down
2 changes: 1 addition & 1 deletion FastRGF/include/header.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
namespace rgf {


#define VER "version 0.6"
#define VER "version 0.7"


const int max_thrds=128;
Expand Down