* apply openmp simd * clean __buildin detection, moving windows build check from xgboost project, add openmp support for vectorize reduce * apply openmp only to rabit * orgnize rabit signature * remove is_bootstrap, use load_checkpoint as implict flag * visual studio don't support latest openmp * orgnize omp declarations * replace memory copy with vector cast * Revert "replace memory copy with vector cast" This reverts commit 28de4792dcdff40d83d458510d23b7ef0b191d79. * Revert "orgnize omp declarations" This reverts commit 31341233d31ce93ccf34d700262b1f3f6690bbfe. * remove openmp settings, merge into a upcoming pr * mis * per feedback, update comments
136 lines
4.1 KiB
C++
136 lines
4.1 KiB
C++
/*!
|
|
* Copyright (c) 2014 by Contributors
|
|
* \file engine_empty.cc
|
|
* \brief this file provides a dummy implementation of engine that does nothing
|
|
* this file provides a way to fall back to single node program without causing too many dependencies
|
|
* This is usually NOT needed, use engine_mpi or engine for real distributed version
|
|
* \author Tianqi Chen
|
|
*/
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
#define NOMINMAX
|
|
|
|
#include "../include/rabit/internal/engine.h"
|
|
|
|
namespace rabit {
|
|
|
|
namespace utils {
|
|
bool STOP_PROCESS_ON_ERROR = true;
|
|
}
|
|
|
|
namespace engine {
|
|
/*! \brief EmptyEngine */
|
|
class EmptyEngine : public IEngine {
|
|
public:
|
|
EmptyEngine(void) {
|
|
version_number = 0;
|
|
}
|
|
virtual void Allreduce(void *sendrecvbuf_,
|
|
size_t type_nbytes,
|
|
size_t count,
|
|
ReduceFunction reducer,
|
|
PreprocFunction prepare_fun,
|
|
void *prepare_arg,
|
|
const char* _file,
|
|
const int _line,
|
|
const char* _caller) {
|
|
utils::Error("EmptyEngine:: Allreduce is not supported,"\
|
|
"use Allreduce_ instead");
|
|
}
|
|
virtual void Broadcast(void *sendrecvbuf_, size_t size, int root,
|
|
const char* _file, const int _line, const char* _caller) {
|
|
}
|
|
virtual void InitAfterException(void) {
|
|
utils::Error("EmptyEngine is not fault tolerant");
|
|
}
|
|
virtual int LoadCheckPoint(Serializable *global_model,
|
|
Serializable *local_model = NULL) {
|
|
return 0;
|
|
}
|
|
virtual void CheckPoint(const Serializable *global_model,
|
|
const Serializable *local_model = NULL) {
|
|
version_number += 1;
|
|
}
|
|
virtual void LazyCheckPoint(const Serializable *global_model) {
|
|
version_number += 1;
|
|
}
|
|
virtual int VersionNumber(void) const {
|
|
return version_number;
|
|
}
|
|
/*! \brief get rank of current node */
|
|
virtual int GetRank(void) const {
|
|
return 0;
|
|
}
|
|
/*! \brief get total number of */
|
|
virtual int GetWorldSize(void) const {
|
|
return 1;
|
|
}
|
|
/*! \brief whether it is distributed */
|
|
virtual bool IsDistributed(void) const {
|
|
return false;
|
|
}
|
|
/*! \brief get the host name of current node */
|
|
virtual std::string GetHost(void) const {
|
|
return std::string("");
|
|
}
|
|
virtual void TrackerPrint(const std::string &msg) {
|
|
// simply print information into the tracker
|
|
utils::Printf("%s", msg.c_str());
|
|
}
|
|
|
|
private:
|
|
int version_number;
|
|
};
|
|
|
|
// singleton sync manager
|
|
EmptyEngine manager;
|
|
|
|
/*! \brief intiialize the synchronization module */
|
|
bool Init(int argc, char *argv[]) {
|
|
return true;
|
|
}
|
|
/*! \brief finalize syncrhonization module */
|
|
bool Finalize(void) {
|
|
return true;
|
|
}
|
|
|
|
/*! \brief singleton method to get engine */
|
|
IEngine *GetEngine(void) {
|
|
return &manager;
|
|
}
|
|
// perform in-place allreduce, on sendrecvbuf
|
|
void Allreduce_(void *sendrecvbuf,
|
|
size_t type_nbytes,
|
|
size_t count,
|
|
IEngine::ReduceFunction red,
|
|
mpi::DataType dtype,
|
|
mpi::OpType op,
|
|
IEngine::PreprocFunction prepare_fun,
|
|
void *prepare_arg,
|
|
const char* _file,
|
|
const int _line,
|
|
const char* _caller) {
|
|
if (prepare_fun != NULL) prepare_fun(prepare_arg);
|
|
}
|
|
|
|
// code for reduce handle
|
|
ReduceHandle::ReduceHandle(void) : handle_(NULL), htype_(NULL) {
|
|
}
|
|
ReduceHandle::~ReduceHandle(void) {}
|
|
|
|
int ReduceHandle::TypeSize(const MPI::Datatype &dtype) {
|
|
return 0;
|
|
}
|
|
void ReduceHandle::Init(IEngine::ReduceFunction redfunc, size_t type_nbytes) {}
|
|
void ReduceHandle::Allreduce(void *sendrecvbuf,
|
|
size_t type_nbytes, size_t count,
|
|
IEngine::PreprocFunction prepare_fun,
|
|
void *prepare_arg,
|
|
const char* _file,
|
|
const int _line,
|
|
const char* _caller) {
|
|
if (prepare_fun != NULL) prepare_fun(prepare_arg);
|
|
}
|
|
} // namespace engine
|
|
} // namespace rabit
|