[DIST] Enable multiple thread and tracker, make rabit and xgboost more thread-safe by using thread local variables.
This commit is contained in:
parent
12dc92f7e0
commit
e80d3db64b
5
NEWS.md
5
NEWS.md
@ -22,6 +22,11 @@ This file records the changes in xgboost library in reverse chronological order.
|
||||
- The windows version is still blocked due to Rtools do not support ```std::thread```.
|
||||
* rabit and dmlc-core are maintained through git submodule
|
||||
- Anyone can open PR to update these dependencies now.
|
||||
* Improvements
|
||||
- Rabit and xgboost libs are not thread-safe and use thread local PRNGs
|
||||
- This could fix some of the previous problem which runs xgboost on multiple threads.
|
||||
* JVM Package
|
||||
- Enable xgboost4j for java and scala
|
||||
|
||||
## v0.47 (2016.01.14)
|
||||
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit 71360023dba458bdc9f1bc6f4309c1a107cb83a0
|
||||
Subproject commit 3f6ff43d3976d5b6d5001608b0e3e526ecde098f
|
||||
2
jvm-packages/.gitignore
vendored
Normal file
2
jvm-packages/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
tracker.py
|
||||
build.sh
|
||||
@ -27,6 +27,8 @@ fi
|
||||
|
||||
rm -f xgboost4j/src/main/resources/lib/libxgboost4j.${dl}
|
||||
mv lib/libxgboost4j.so xgboost4j/src/main/resources/lib/libxgboost4j.${dl}
|
||||
# copy python to native resources
|
||||
cp ../dmlc-core/tracker/dmlc_tracker/tracker.py xgboost4j/src/main/resources/tracker.py
|
||||
|
||||
popd > /dev/null
|
||||
echo "complete"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
# Simple script to test distributed version, to be deleted later.
|
||||
cd xgboost4j-demo
|
||||
../../dmlc-core/tracker/dmlc-submit --cluster=local --num-workers=3 java -cp target/xgboost4j-demo-0.1-jar-with-dependencies.jar ml.dmlc.xgboost4j.demo.DistTrain
|
||||
java -XX:OnError="gdb - %p" -cp target/xgboost4j-demo-0.1-jar-with-dependencies.jar ml.dmlc.xgboost4j.demo.DistTrain 4
|
||||
cd ..
|
||||
|
||||
@ -2,19 +2,36 @@ package ml.dmlc.xgboost4j.demo;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import ml.dmlc.xgboost4j.*;
|
||||
|
||||
|
||||
/**
|
||||
* Distributed training example, used to quick test distributed training.
|
||||
*
|
||||
* @author tqchen
|
||||
*/
|
||||
public class DistTrain {
|
||||
private static final Log logger = LogFactory.getLog(DistTrain.class);
|
||||
private Map<String, String> envs = null;
|
||||
|
||||
public static void main(String[] args) throws IOException, XGBoostError {
|
||||
private class Worker implements Runnable {
|
||||
private int worker_id;
|
||||
Worker(int worker_id) {
|
||||
this.worker_id = worker_id;
|
||||
}
|
||||
|
||||
public void run() {
|
||||
try {
|
||||
Map<String, String> worker_env = new HashMap<String, String>(envs);
|
||||
|
||||
worker_env.put("DMLC_TASK_ID", new Integer(worker_id).toString());
|
||||
// always initialize rabit module before training.
|
||||
Rabit.init(new HashMap<String, String>());
|
||||
Rabit.init(worker_env);
|
||||
|
||||
// load file from text file, also binary buffer generated by xgboost4j
|
||||
DMatrix trainMat = new DMatrix("../../demo/data/agaricus.txt.train");
|
||||
@ -24,6 +41,7 @@ public class DistTrain {
|
||||
params.put("eta", 1.0);
|
||||
params.put("max_depth", 2);
|
||||
params.put("silent", 1);
|
||||
params.put("nthread", 2);
|
||||
params.put("objective", "binary:logistic");
|
||||
|
||||
|
||||
@ -39,5 +57,23 @@ public class DistTrain {
|
||||
|
||||
// always shutdown rabit module after training.
|
||||
Rabit.shutdown();
|
||||
} catch (Exception ex){
|
||||
logger.error(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void start(int nworker) throws IOException, XGBoostError, InterruptedException {
|
||||
RabitTracker tracker = new RabitTracker(nworker);
|
||||
tracker.start();
|
||||
envs = tracker.getWorkerEnvs();
|
||||
for (int i = 0; i < nworker; ++i) {
|
||||
new Thread(new Worker(i)).start();
|
||||
}
|
||||
tracker.waitFor();
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws IOException, XGBoostError, InterruptedException {
|
||||
new DistTrain().start(Integer.parseInt(args[0]));
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,78 @@
|
||||
package ml.dmlc.xgboost4j;
|
||||
|
||||
|
||||
import java.io.*;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* Auxiliary utils to
|
||||
*/
|
||||
class FileUtil {
|
||||
/**
|
||||
* Create a temp file that copies the resource from current JAR archive
|
||||
* <p/>
|
||||
* The file from JAR is copied into system temp file.
|
||||
* The temporary file is deleted after exiting.
|
||||
* Method uses String as filename because the pathname is "abstract", not system-dependent.
|
||||
* <p/>
|
||||
* The restrictions of {@link File#createTempFile(java.lang.String, java.lang.String)} apply to
|
||||
* {@code path}.
|
||||
* @param path Path to the resources in the jar
|
||||
* @return The created temp file.
|
||||
* @throws IOException
|
||||
* @throws IllegalArgumentException
|
||||
*/
|
||||
static File createTempFileFromResource(String path) throws IOException, IllegalArgumentException {
|
||||
// Obtain filename from path
|
||||
if (!path.startsWith("/")) {
|
||||
throw new IllegalArgumentException("The path has to be absolute (start with '/').");
|
||||
}
|
||||
|
||||
String[] parts = path.split("/");
|
||||
String filename = (parts.length > 1) ? parts[parts.length - 1] : null;
|
||||
|
||||
// Split filename to prexif and suffix (extension)
|
||||
String prefix = "";
|
||||
String suffix = null;
|
||||
if (filename != null) {
|
||||
parts = filename.split("\\.", 2);
|
||||
prefix = parts[0];
|
||||
suffix = (parts.length > 1) ? "." + parts[parts.length - 1] : null; // Thanks, davs! :-)
|
||||
}
|
||||
|
||||
// Check if the filename is okay
|
||||
if (filename == null || prefix.length() < 3) {
|
||||
throw new IllegalArgumentException("The filename has to be at least 3 characters long.");
|
||||
}
|
||||
// Prepare temporary file
|
||||
File temp = File.createTempFile(prefix, suffix);
|
||||
temp.deleteOnExit();
|
||||
|
||||
if (!temp.exists()) {
|
||||
throw new FileNotFoundException("File " + temp.getAbsolutePath() + " does not exist.");
|
||||
}
|
||||
|
||||
// Prepare buffer for data copying
|
||||
byte[] buffer = new byte[1024];
|
||||
int readBytes;
|
||||
|
||||
// Open and check input stream
|
||||
InputStream is = NativeLibLoader.class.getResourceAsStream(path);
|
||||
if (is == null) {
|
||||
throw new FileNotFoundException("File " + path + " was not found inside JAR.");
|
||||
}
|
||||
|
||||
// Open output stream and copy data between source file in JAR and the temporary file
|
||||
OutputStream os = new FileOutputStream(temp);
|
||||
try {
|
||||
while ((readBytes = is.read(buffer)) != -1) {
|
||||
os.write(buffer, 0, readBytes);
|
||||
}
|
||||
} finally {
|
||||
// If read/write fails, close streams safely before throwing an exception
|
||||
os.close();
|
||||
is.close();
|
||||
}
|
||||
return temp;
|
||||
}
|
||||
}
|
||||
@ -21,6 +21,9 @@ import java.lang.reflect.Field;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import ml.dmlc.xgboost4j.FileUtil;
|
||||
|
||||
|
||||
/**
|
||||
* class to load native library
|
||||
*
|
||||
@ -61,59 +64,7 @@ class NativeLibLoader {
|
||||
* three characters
|
||||
*/
|
||||
private static void loadLibraryFromJar(String path) throws IOException, IllegalArgumentException{
|
||||
|
||||
if (!path.startsWith("/")) {
|
||||
throw new IllegalArgumentException("The path has to be absolute (start with '/').");
|
||||
}
|
||||
|
||||
// Obtain filename from path
|
||||
String[] parts = path.split("/");
|
||||
String filename = (parts.length > 1) ? parts[parts.length - 1] : null;
|
||||
|
||||
// Split filename to prexif and suffix (extension)
|
||||
String prefix = "";
|
||||
String suffix = null;
|
||||
if (filename != null) {
|
||||
parts = filename.split("\\.", 2);
|
||||
prefix = parts[0];
|
||||
suffix = (parts.length > 1) ? "." + parts[parts.length - 1] : null; // Thanks, davs! :-)
|
||||
}
|
||||
|
||||
// Check if the filename is okay
|
||||
if (filename == null || prefix.length() < 3) {
|
||||
throw new IllegalArgumentException("The filename has to be at least 3 characters long.");
|
||||
}
|
||||
|
||||
// Prepare temporary file
|
||||
File temp = File.createTempFile(prefix, suffix);
|
||||
temp.deleteOnExit();
|
||||
|
||||
if (!temp.exists()) {
|
||||
throw new FileNotFoundException("File " + temp.getAbsolutePath() + " does not exist.");
|
||||
}
|
||||
|
||||
// Prepare buffer for data copying
|
||||
byte[] buffer = new byte[1024];
|
||||
int readBytes;
|
||||
|
||||
// Open and check input stream
|
||||
InputStream is = NativeLibLoader.class.getResourceAsStream(path);
|
||||
if (is == null) {
|
||||
throw new FileNotFoundException("File " + path + " was not found inside JAR.");
|
||||
}
|
||||
|
||||
// Open output stream and copy data between source file in JAR and the temporary file
|
||||
OutputStream os = new FileOutputStream(temp);
|
||||
try {
|
||||
while ((readBytes = is.read(buffer)) != -1) {
|
||||
os.write(buffer, 0, readBytes);
|
||||
}
|
||||
} finally {
|
||||
// If read/write fails, close streams safely before throwing an exception
|
||||
os.close();
|
||||
is.close();
|
||||
}
|
||||
|
||||
File temp = FileUtil.createTempFileFromResource(path);
|
||||
// Finally, load the library
|
||||
System.load(temp.getAbsolutePath());
|
||||
}
|
||||
|
||||
@ -0,0 +1,98 @@
|
||||
package ml.dmlc.xgboost4j;
|
||||
|
||||
|
||||
|
||||
import java.io.*;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
/**
|
||||
* Distributed RabitTracker, need to be started on driver code before running distributed jobs.
|
||||
*/
|
||||
public class RabitTracker {
|
||||
// Maybe per tracker logger?
|
||||
private static final Log logger = LogFactory.getLog(RabitTracker.class);
|
||||
// tracker python file.
|
||||
private static File tracker_py = null;
|
||||
// environment variable to be pased.
|
||||
private Map<String, String> envs = new HashMap<String, String>();
|
||||
// number of workers to be submitted.
|
||||
private int num_workers;
|
||||
// child process
|
||||
private Process process = null;
|
||||
// logger thread
|
||||
private Thread logger_thread = null;
|
||||
|
||||
//load native library
|
||||
static {
|
||||
try {
|
||||
initTrackerPy();
|
||||
} catch (IOException ex) {
|
||||
logger.error("load tracker library failed.");
|
||||
logger.error(ex);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tracker logger that logs output from tracker.
|
||||
*/
|
||||
private class TrackerLogger implements Runnable {
|
||||
public void run() {
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getErrorStream()));
|
||||
String line;
|
||||
try {
|
||||
while ((line = reader.readLine()) != null) {
|
||||
logger.info(line);
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
logger.error(ex.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static synchronized void initTrackerPy() throws IOException {
|
||||
tracker_py = FileUtil.createTempFileFromResource("/tracker.py");
|
||||
}
|
||||
|
||||
|
||||
public RabitTracker(int num_workers) {
|
||||
this.num_workers = num_workers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get environments that can be used to pass to worker.
|
||||
* @return The environment settings.
|
||||
*/
|
||||
public Map<String, String> getWorkerEnvs() {
|
||||
return envs;
|
||||
}
|
||||
|
||||
public void start() throws IOException {
|
||||
process = Runtime.getRuntime().exec("python " + tracker_py.getAbsolutePath() +
|
||||
" --num-workers=" + new Integer(num_workers).toString());
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
|
||||
assert reader.readLine().trim().equals("DMLC_TRACKER_ENV_START");
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
if (line.trim().equals("DMLC_TRACKER_ENV_END")) {
|
||||
break;
|
||||
}
|
||||
String []sep = line.split("=");
|
||||
if (sep.length == 2) {
|
||||
envs.put(sep[0], sep[1]);
|
||||
}
|
||||
}
|
||||
logger.debug("Tracker started, with env=" + envs.toString());
|
||||
// also start a tracker logger
|
||||
logger_thread = new Thread(new TrackerLogger());
|
||||
logger_thread.setDaemon(true);
|
||||
logger_thread.start();
|
||||
}
|
||||
|
||||
public void waitFor() throws InterruptedException {
|
||||
process.waitFor();
|
||||
}
|
||||
}
|
||||
@ -74,9 +74,9 @@ class XgboostJNI {
|
||||
|
||||
public final static native int XGBoosterSaveModel(long handle, String fname);
|
||||
|
||||
public final static native int XGBoosterLoadModelFromBuffer(long handle, long buf, long len);
|
||||
public final static native int XGBoosterLoadModelFromBuffer(long handle, byte[] bytes);
|
||||
|
||||
public final static native int XGBoosterGetModelRaw(long handle, String[] out_string);
|
||||
public final static native int XGBoosterGetModelRaw(long handle, byte[][] out_bytes);
|
||||
|
||||
public final static native int XGBoosterDumpModel(long handle, String fmap, int with_stats,
|
||||
String[][] out_strings);
|
||||
|
||||
@ -13,6 +13,8 @@
|
||||
*/
|
||||
|
||||
#include <xgboost/c_api.h>
|
||||
#include <xgboost/base.h>
|
||||
#include <xgboost/logging.h>
|
||||
#include "./xgboost4j.h"
|
||||
#include <cstring>
|
||||
#include <vector>
|
||||
@ -276,27 +278,17 @@ JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGDMatrixNumRow
|
||||
*/
|
||||
JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterCreate
|
||||
(JNIEnv *jenv, jclass jcls, jlongArray jhandles, jlongArray jout) {
|
||||
DMatrixHandle* handles = NULL;
|
||||
bst_ulong len = 0;
|
||||
jlong* cjhandles = 0;
|
||||
BoosterHandle result;
|
||||
|
||||
if (jhandles) {
|
||||
len = (bst_ulong)jenv->GetArrayLength(jhandles);
|
||||
handles = new DMatrixHandle[len];
|
||||
//put handle from jhandles to chandles
|
||||
cjhandles = jenv->GetLongArrayElements(jhandles, 0);
|
||||
for(bst_ulong i=0; i<len; i++) {
|
||||
handles[i] = (DMatrixHandle) cjhandles[i];
|
||||
std::vector<DMatrixHandle> handles;
|
||||
if (jhandles != nullptr) {
|
||||
size_t len = jenv->GetArrayLength(jhandles);
|
||||
jlong *cjhandles = jenv->GetLongArrayElements(jhandles, 0);
|
||||
for (size_t i = 0; i < len; ++i) {
|
||||
handles.push_back((DMatrixHandle) cjhandles[i]);
|
||||
}
|
||||
}
|
||||
|
||||
int ret = XGBoosterCreate(handles, len, &result);
|
||||
//release
|
||||
if (jhandles) {
|
||||
delete[] handles;
|
||||
jenv->ReleaseLongArrayElements(jhandles, cjhandles, 0);
|
||||
}
|
||||
BoosterHandle result;
|
||||
int ret = XGBoosterCreate(dmlc::BeginPtr(handles), handles.size(), &result);
|
||||
setHandle(jenv, jout, result);
|
||||
return ret;
|
||||
}
|
||||
@ -369,43 +361,34 @@ JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterBoostOneIter
|
||||
JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterEvalOneIter
|
||||
(JNIEnv *jenv, jclass jcls, jlong jhandle, jint jiter, jlongArray jdmats, jobjectArray jevnames, jobjectArray jout) {
|
||||
BoosterHandle handle = (BoosterHandle) jhandle;
|
||||
DMatrixHandle* dmats = 0;
|
||||
char **evnames = 0;
|
||||
char *result = 0;
|
||||
bst_ulong len = (bst_ulong)jenv->GetArrayLength(jdmats);
|
||||
if(len > 0) {
|
||||
dmats = new DMatrixHandle[len];
|
||||
evnames = new char*[len];
|
||||
}
|
||||
//put handle from jhandles to chandles
|
||||
std::vector<DMatrixHandle> dmats;
|
||||
std::vector<std::string> evnames;
|
||||
std::vector<const char*> evchars;
|
||||
|
||||
size_t len = static_cast<size_t>(jenv->GetArrayLength(jdmats));
|
||||
// put handle from jhandles to chandles
|
||||
jlong* cjdmats = jenv->GetLongArrayElements(jdmats, 0);
|
||||
for(bst_ulong i=0; i<len; i++) {
|
||||
dmats[i] = (DMatrixHandle) cjdmats[i];
|
||||
}
|
||||
//transfer jObjectArray to char**, user strcpy and release JNI char* inplace
|
||||
for(bst_ulong i=0; i<len; i++) {
|
||||
for (size_t i = 0; i < len; ++i) {
|
||||
dmats.push_back((DMatrixHandle) cjdmats[i]);
|
||||
jstring jevname = (jstring)jenv->GetObjectArrayElement(jevnames, i);
|
||||
const char* cevname = jenv->GetStringUTFChars(jevname, 0);
|
||||
evnames[i] = new char[jenv->GetStringLength(jevname)];
|
||||
strcpy(evnames[i], cevname);
|
||||
jenv->ReleaseStringUTFChars(jevname, cevname);
|
||||
const char *s =jenv->GetStringUTFChars(jevname, 0);
|
||||
evnames.push_back(std::string(s, jenv->GetStringLength(jevname)));
|
||||
if (s != nullptr) jenv->ReleaseStringUTFChars(jevname, s);
|
||||
}
|
||||
|
||||
int ret = XGBoosterEvalOneIter(handle, jiter, dmats, (char const *(*)) evnames, len, (const char **) &result);
|
||||
if(len > 0) {
|
||||
delete[] dmats;
|
||||
//release string chars
|
||||
for(bst_ulong i=0; i<len; i++) {
|
||||
delete[] evnames[i];
|
||||
}
|
||||
delete[] evnames;
|
||||
jenv->ReleaseLongArrayElements(jdmats, cjdmats, 0);
|
||||
for (size_t i = 0; i < len; ++i) {
|
||||
evchars.push_back(evnames[i].c_str());
|
||||
}
|
||||
const char* result;
|
||||
int ret = XGBoosterEvalOneIter(handle, jiter,
|
||||
dmlc::BeginPtr(dmats),
|
||||
dmlc::BeginPtr(evchars),
|
||||
len, &result);
|
||||
jstring jinfo = nullptr;
|
||||
if (result != nullptr) {
|
||||
jinfo = jenv->NewStringUTF(result);
|
||||
}
|
||||
|
||||
jstring jinfo = 0;
|
||||
if (result) jinfo = jenv->NewStringUTF((const char *) result);
|
||||
jenv->SetObjectArrayElement(jout, 0, jinfo);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -456,37 +439,40 @@ JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterSaveModel
|
||||
|
||||
int ret = XGBoosterSaveModel(handle, fname);
|
||||
if (fname) jenv->ReleaseStringUTFChars(jfname, fname);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* Class: ml_dmlc_xgboost4j_XgboostJNI
|
||||
* Method: XGBoosterLoadModelFromBuffer
|
||||
* Signature: (JJJ)V
|
||||
* Signature: (J[B)I
|
||||
*/
|
||||
JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterLoadModelFromBuffer
|
||||
(JNIEnv *jenv, jclass jcls, jlong jhandle, jlong jbuf, jlong jlen) {
|
||||
(JNIEnv *jenv, jclass jcls, jlong jhandle, jbyteArray jbytes) {
|
||||
BoosterHandle handle = (BoosterHandle) jhandle;
|
||||
void *buf = (void*) jbuf;
|
||||
return XGBoosterLoadModelFromBuffer(handle, (void const *)buf, (bst_ulong) jlen);
|
||||
jbyte* buffer = jenv->GetByteArrayElements(jbytes, 0);
|
||||
int ret = XGBoosterLoadModelFromBuffer(
|
||||
handle, buffer, jenv->GetArrayLength(jbytes));
|
||||
jenv->ReleaseByteArrayElements(jbytes, buffer, 0);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* Class: ml_dmlc_xgboost4j_XgboostJNI
|
||||
* Method: XGBoosterGetModelRaw
|
||||
* Signature: (J)Ljava/lang/String;
|
||||
* Signature: (J[[B)I
|
||||
*/
|
||||
JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterGetModelRaw
|
||||
(JNIEnv * jenv, jclass jcls, jlong jhandle, jobjectArray jout) {
|
||||
BoosterHandle handle = (BoosterHandle) jhandle;
|
||||
bst_ulong len = 0;
|
||||
char *result;
|
||||
const char* result;
|
||||
int ret = XGBoosterGetModelRaw(handle, &len, &result);
|
||||
|
||||
int ret = XGBoosterGetModelRaw(handle, &len, (const char **) &result);
|
||||
if (result) {
|
||||
jstring jinfo = jenv->NewStringUTF((const char *) result);
|
||||
jenv->SetObjectArrayElement(jout, 0, jinfo);
|
||||
jbyteArray jarray = jenv->NewByteArray(len);
|
||||
jenv->SetByteArrayRegion(jarray, 0, len, (jbyte*)result);
|
||||
jenv->SetObjectArrayElement(jout, 0, jarray);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
@ -553,15 +539,17 @@ JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_RabitInit
|
||||
bst_ulong len = (bst_ulong)jenv->GetArrayLength(jargs);
|
||||
for (bst_ulong i = 0; i < len; ++i) {
|
||||
jstring arg = (jstring)jenv->GetObjectArrayElement(jargs, i);
|
||||
std::string s(jenv->GetStringUTFChars(arg, 0),
|
||||
jenv->GetStringLength(arg));
|
||||
if (s.length() != 0) args.push_back(s);
|
||||
const char *s = jenv->GetStringUTFChars(arg, 0);
|
||||
args.push_back(std::string(s, jenv->GetStringLength(arg)));
|
||||
if (s != nullptr) jenv->ReleaseStringUTFChars(arg, s);
|
||||
if (args.back().length() == 0) args.pop_back();
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < args.size(); ++i) {
|
||||
argv.push_back(&args[i][0]);
|
||||
}
|
||||
RabitInit(args.size(), args.size() == 0 ? NULL : &argv[0]);
|
||||
|
||||
RabitInit(args.size(), dmlc::BeginPtr(argv));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@ -194,15 +194,15 @@ JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterSaveModel
|
||||
/*
|
||||
* Class: ml_dmlc_xgboost4j_XgboostJNI
|
||||
* Method: XGBoosterLoadModelFromBuffer
|
||||
* Signature: (JJJ)I
|
||||
* Signature: (J[B)I
|
||||
*/
|
||||
JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterLoadModelFromBuffer
|
||||
(JNIEnv *, jclass, jlong, jlong, jlong);
|
||||
(JNIEnv *, jclass, jlong, jbyteArray);
|
||||
|
||||
/*
|
||||
* Class: ml_dmlc_xgboost4j_XgboostJNI
|
||||
* Method: XGBoosterGetModelRaw
|
||||
* Signature: (J[Ljava/lang/String;)I
|
||||
* Signature: (J[[B)I
|
||||
*/
|
||||
JNIEXPORT jint JNICALL Java_ml_dmlc_xgboost4j_XgboostJNI_XGBoosterGetModelRaw
|
||||
(JNIEnv *, jclass, jlong, jobjectArray);
|
||||
|
||||
2
rabit
2
rabit
@ -1 +1 @@
|
||||
Subproject commit 1392e9f3da59bd5602ddebee944dd8fb5c6507b0
|
||||
Subproject commit be50e7b63224b9fb7ff94ce34df9f8752ef83043
|
||||
@ -4,12 +4,20 @@
|
||||
* \brief Enable all kinds of global variables in common.
|
||||
*/
|
||||
#include "./random.h"
|
||||
#include "./thread_local.h"
|
||||
|
||||
namespace xgboost {
|
||||
namespace common {
|
||||
/*! \brief thread local entry for random. */
|
||||
struct RandomThreadLocalEntry {
|
||||
/*! \brief the random engine instance. */
|
||||
GlobalRandomEngine engine;
|
||||
};
|
||||
|
||||
typedef ThreadLocalStore<RandomThreadLocalEntry> RandomThreadLocalStore;
|
||||
|
||||
GlobalRandomEngine& GlobalRandom() {
|
||||
static GlobalRandomEngine inst;
|
||||
return inst;
|
||||
return RandomThreadLocalStore::Get()->engine;
|
||||
}
|
||||
}
|
||||
} // namespace xgboost
|
||||
|
||||
@ -61,7 +61,8 @@ typedef RandomEngine GlobalRandomEngine;
|
||||
|
||||
/*!
|
||||
* \brief global singleton of a random engine.
|
||||
* Only use this engine when necessary, not thread-safe.
|
||||
* This random engine is thread-local and
|
||||
* only visible to current thread.
|
||||
*/
|
||||
GlobalRandomEngine& GlobalRandom(); // NOLINT(*)
|
||||
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
#ifndef XGBOOST_COMMON_THREAD_LOCAL_H_
|
||||
#define XGBOOST_COMMON_THREAD_LOCAL_H_
|
||||
|
||||
#include <dmlc/base.h>
|
||||
|
||||
#if DMLC_ENABLE_STD_THREAD
|
||||
#include <mutex>
|
||||
#endif
|
||||
|
||||
@ -15,6 +15,7 @@
|
||||
#include <utility>
|
||||
#include <string>
|
||||
#include <limits>
|
||||
#include "../common/common.h"
|
||||
|
||||
namespace xgboost {
|
||||
namespace gbm {
|
||||
@ -265,13 +266,11 @@ class GBTree : public GradientBooster {
|
||||
inline void InitUpdater() {
|
||||
if (updaters.size() != 0) return;
|
||||
std::string tval = tparam.updater_seq;
|
||||
char *pstr;
|
||||
pstr = std::strtok(&tval[0], ",");
|
||||
while (pstr != nullptr) {
|
||||
std::unique_ptr<TreeUpdater> up(TreeUpdater::Create(pstr));
|
||||
std::vector<std::string> ups = common::Split(tval, ',');
|
||||
for (const std::string& pstr : ups) {
|
||||
std::unique_ptr<TreeUpdater> up(TreeUpdater::Create(pstr.c_str()));
|
||||
up->Init(this->cfg);
|
||||
updaters.push_back(std::move(up));
|
||||
pstr = std::strtok(nullptr, ",");
|
||||
}
|
||||
}
|
||||
// do group specific group
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user