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

Unable to build R-modular interface #2654

Closed
beew opened this issue Dec 22, 2014 · 25 comments · Fixed by #2974
Closed

Unable to build R-modular interface #2654

beew opened this issue Dec 22, 2014 · 25 comments · Fixed by #2974

Comments

@beew
Copy link

beew commented Dec 22, 2014

Hi,

I tried to build the R-modular interface but make failed

[100%] [100%] Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/sg_print_functions.cpp.o
Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/modshogunR_wrap.cxx.o
In file included from /home/bee/opt/hdf5/include/hdf5.h:24:0,
from /home/bee/Downloads/shogun-develop/src/shogun/io/HDF5File.h:19,
from /home/bee/Downloads/shogun-develop/build/src/interfaces/r_modular/modshogunR_wrap.cxx:3085:
/home/bee/opt/hdf5/include/H5public.h:198:33: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]

define H5_PRINTF_HADDR_FMT "%"H5_PRINTF_LL_WIDTH"u"

                             ^

Linking CXX shared module modshogun.so
Generating modshogun.RData
f="modshogun.R"; fdata="modshogun.RData"; source ( f ) ; save ( list=ls ( all=TRUE ) ,file=fdata, compress=TRUE ) ; q ( save="no" )
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
Calls: source -> file
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
cannot open file 'modshogun.R': No such file or directory
Execution halted
make[2]: *** [src/interfaces/r_modular/modshogun.so] Error 1
make[1]: *** [src/interfaces/r_modular/CMakeFiles/r_modular.dir/all] Error 2
make: *** [all] Error 2

Tried both shogun 3.2.0 and developement version. R-static interface built fine though.

R version 3.1.2, OS is Ubuntu 14.04 64 bit.

Thanks for help in advance.

@karlnapf
Copy link
Member

Some thoughts:

  • the hdf5 warning makes me think this might be caused by your local installation, please double check
  • There is another (might be closed) thread on R modular, it works in principle.
  • try using the latest develop branch, we did lots of fixes for R after the last release (working on next one)

@vigsterkr @matthuska should be able to help, too

@matthuska
Copy link
Contributor

I just checked out the latest development version and it compiles fine, though I'm using Ubuntu 14.10.

I don't know if it will make any difference but the HDF5 header in that warning (H5public.h) has been updated on my system so that I don't get the same warning you're getting. Here's my version:

$ aptitude show libhdf5-dev
Version: 1.8.12+docs-1.1ubuntu1

@beew
Copy link
Author

beew commented Dec 22, 2014

Hi Matthuska,

My hdf5 is a local self build because shogun doesn't build with hdf5-openmpi, which I installed for the whole system as I need it for other things.

See this thread
#1856

@matthuska
Copy link
Contributor

Just to rule it out, can you modify the H5public.h file so that it doesn't trigger that warning? The details are here:

https://gitorious.org/kitware/itk/commit/f46f541516a33aa12be8e390b59f4b5871d57ab9

--- a/Modules/ThirdParty/HDF5/src/itkhdf5/src/H5public.h
+++ b/Modules/ThirdParty/HDF5/src/itkhdf5/src/H5public.h
@@ -195,7 +195,7 @@
#elif H5_SIZEOF_HADDR_T ==H5_SIZEOF_LONG

define H5_PRINTF_HADDR_FMT "%lu"

#elif H5_SIZEOF_HADDR_T ==H5_SIZEOF_LONG_LONG
-# define H5_PRINTF_HADDR_FMT "%"H5_PRINTF_LL_WIDTH"u"
+# define H5_PRINTF_HADDR_FMT "%" H5_PRINTF_LL_WIDTH "u"
#else

error "nothing appropriate for H5_PRINTF_HADDR_FMT"

#endif

@beew
Copy link
Author

beew commented Dec 22, 2014

Just updated my hdf5 to 1.8.12, the hdf5 warnings disappear but still cannot build R-Modular (shogun development from git)

Scanning dependencies of target r_modular
[100%] [100%] Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/modshogunR_wrap.cxx.o
Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/sg_print_functions.cpp.o
In file included from /usr/include/python2.7/numpy/ndarraytypes.h:1761:0,
from /usr/include/python2.7/numpy/ndarrayobject.h:17,
from /usr/include/python2.7/numpy/arrayobject.h:4,
from /home/bee/Downloads/shogun/build/src/interfaces/python_modular/modshogunPYTHON_wrap.cxx:6318:
/usr/include/python2.7/numpy/npy_1_7_deprecated_api.h:15:2: warning: #warning "Using deprecated NumPy API, disable it by " "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
#warning "Using deprecated NumPy API, disable it by "
^
cc1plus: warning: unrecognized command line option "-Wno-c++11-narrowing" [enabled by default]
Linking CXX shared module _modshogun.so
CMakeFiles/_python_modular.dir/modshogunPYTHON_wrap.cxx.o: In function shogun_CSGObject___getstate__': /home/bee/Downloads/shogun/build/src/interfaces/python_modular/modshogunPYTHON_wrap.cxx:8953: warning: the use of tmpnam' is dangerous, better use`mkstemp'
[100%] Built target _python_modular
Linking CXX shared module modshogun.so
Generating modshogun.RData
f="modshogun.R"; fdata="modshogun.RData"; source ( f ) ; save ( list=ls ( all=TRUE ) ,file=fdata, compress=TRUE ) ; q ( save="no" )
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
Calls: source -> file
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
cannot open file 'modshogun.R': No such file or directory
Execution halted
make[2]: *** [src/interfaces/r_modular/modshogun.so] Error 1
make[1]: *** [src/interfaces/r_modular/CMakeFiles/r_modular.dir/all] Error 2
make: *** [all] Error 2

@matthuska
Copy link
Contributor

Are there any earlier errors? Perhaps related to swig? Maybe you can do a fresh build and post the entire build output into a gist so I can look through it for other possible problems. Swig should be generating modshogun.R and for some reason it doesn't seem to be happening.

@beew
Copy link
Author

beew commented Dec 23, 2014

Hi, here is the complete build log

Scanning dependencies of target version
Scanning dependencies of target ShogunVersionProtobuf
[ 1%] Scanning dependencies of target ChunksProtobuf
[ 1%] Scanning dependencies of target class_list
Generating version header
Running C++ protocol buffer compiler on ShogunVersion.proto
[ 1%] Running C++ protocol buffer compiler on Chunks.proto
[ 1%] Running C++ protocol buffer compiler on Chunks.proto
[ 1%] [ 1%] [ 1%] Built target ShogunVersionProtobuf
Built target ChunksProtobuf
Running C++ protocol buffer compiler on Headers.proto
Scanning dependencies of target HeadersProtobuf
[ 1%] Built target version
Scanning dependencies of target r_doxy2swig
[ 1%] [ 1%] Built target HeadersProtobuf
Scanning dependencies of target r_modular_src
[ 2%] Generating /home/bee/Downloads/shogun/src/shogun/base/class_list.cpp
Generating doxygen doc
[ 2%] copying SWIG files
[ 2%] Built target r_modular_src
[ 3%] Built target class_list
Scanning dependencies of target libshogun
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:63: warning: Compound shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:342: warning: Compound shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:237: warning: Compound shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:43: warning: Compound shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:476: warning: Compound shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:135: warning: Compound shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:304: warning: Compound shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:390: warning: Compound shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:562: warning: Compound shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:132: warning: Compound shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:218: warning: Compound shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:46: warning: Compound shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:39: warning: Member ShogunVersion_SGDataType (enumeration) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:32: warning: Member protobuf_AddDesc_Chunks_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:33: warning: Member protobuf_AssignDesc_Chunks_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:34: warning: Member protobuf_ShutdownFile_Chunks_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:32: warning: Member protobuf_AddDesc_Headers_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:33: warning: Member protobuf_AssignDesc_Headers_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:34: warning: Member protobuf_ShutdownFile_Headers_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:33: warning: Member protobuf_AddDesc_ShogunVersion_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:34: warning: Member protobuf_AssignDesc_ShogunVersion_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:35: warning: Member protobuf_ShutdownFile_ShogunVersion_2eproto() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:46: warning: Member ShogunVersion_SGDataType_IsValid(int value) (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:51: warning: Member ShogunVersion_SGDataType_descriptor() (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:52: warning: Member ShogunVersion_SGDataType_Name(ShogunVersion_SGDataType value) (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:56: warning: Member ShogunVersion_SGDataType_Parse(const ::std::string &name, ShogunVersion_SGDataType _value) (function) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:47: warning: Member ShogunVersion_SGDataType_SGDataType_MIN (variable) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:48: warning: Member ShogunVersion_SGDataType_SGDataType_MAX (variable) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:49: warning: Member ShogunVersion_SGDataType_SGDataType_ARRAYSIZE (variable) of namespace shogun is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:51: warning: Member BoolChunk(const BoolChunk &from) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:53: warning: Member operator=(const BoolChunk &from) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:58: warning: Member unknown_fields() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:62: warning: Member mutable_unknown_fields() (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:69: warning: Member Swap(BoolChunk *other) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:73: warning: Member New() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:74: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:75: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:76: warning: Member CopyFrom(const BoolChunk &from) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:77: warning: Member MergeFrom(const BoolChunk &from) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:78: warning: Member Clear() (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:79: warning: Member IsInitialized() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:81: warning: Member ByteSize() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:82: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:84: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:86: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:87: warning: Member GetCachedSize() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:94: warning: Member GetMetadata() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:101: warning: Member data_size() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:102: warning: Member clear_data() (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:104: warning: Member data(int index) const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:105: warning: Member set_data(int index, bool value) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:106: warning: Member add_data(bool value) (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:108: warning: Member data() const (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:110: warning: Member mutable_data() (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:66: warning: Member descriptor() (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:67: warning: Member default_instance() (function) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:103: warning: Member kDataFieldNumber (variable) of class shogun::BoolChunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:137: warning: Member Int32Chunk(const Int32Chunk &from) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:139: warning: Member operator=(const Int32Chunk &from) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:144: warning: Member unknown_fields() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:148: warning: Member mutable_unknown_fields() (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:155: warning: Member Swap(Int32Chunk *other) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:159: warning: Member New() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:160: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:161: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:162: warning: Member CopyFrom(const Int32Chunk &from) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:163: warning: Member MergeFrom(const Int32Chunk &from) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:164: warning: Member Clear() (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:165: warning: Member IsInitialized() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:167: warning: Member ByteSize() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:168: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:170: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:172: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:173: warning: Member GetCachedSize() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:180: warning: Member GetMetadata() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:187: warning: Member data_size() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:188: warning: Member clear_data() (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:190: warning: Member data(int index) const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:191: warning: Member set_data(int index,::google::protobuf::int32 value) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:192: warning: Member add_data(::google::protobuf::int32 value) (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:194: warning: Member data() const (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:196: warning: Member mutable_data() (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:152: warning: Member descriptor() (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:153: warning: Member default_instance() (function) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:189: warning: Member kDataFieldNumber (variable) of class shogun::Int32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:223: warning: Member UInt32Chunk(const UInt32Chunk &from) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:225: warning: Member operator=(const UInt32Chunk &from) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:230: warning: Member unknown_fields() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:234: warning: Member mutable_unknown_fields() (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:241: warning: Member Swap(UInt32Chunk *other) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:245: warning: Member New() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:246: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:247: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:248: warning: Member CopyFrom(const UInt32Chunk &from) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:249: warning: Member MergeFrom(const UInt32Chunk &from) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:250: warning: Member Clear() (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:251: warning: Member IsInitialized() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:253: warning: Member ByteSize() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:254: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:256: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:258: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:259: warning: Member GetCachedSize() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:266: warning: Member GetMetadata() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:273: warning: Member data_size() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:274: warning: Member clear_data() (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:276: warning: Member data(int index) const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:277: warning: Member set_data(int index,::google::protobuf::uint32 value) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:278: warning: Member add_data(::google::protobuf::uint32 value) (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:280: warning: Member data() const (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:282: warning: Member mutable_data() (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:238: warning: Member descriptor() (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:239: warning: Member default_instance() (function) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:275: warning: Member kDataFieldNumber (variable) of class shogun::UInt32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:309: warning: Member Int64Chunk(const Int64Chunk &from) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:311: warning: Member operator=(const Int64Chunk &from) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:316: warning: Member unknown_fields() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:320: warning: Member mutable_unknown_fields() (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:327: warning: Member Swap(Int64Chunk *other) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:331: warning: Member New() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:332: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:333: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:334: warning: Member CopyFrom(const Int64Chunk &from) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:335: warning: Member MergeFrom(const Int64Chunk &from) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:336: warning: Member Clear() (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:337: warning: Member IsInitialized() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:339: warning: Member ByteSize() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:340: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:342: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:344: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:345: warning: Member GetCachedSize() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:352: warning: Member GetMetadata() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:359: warning: Member data_size() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:360: warning: Member clear_data() (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:362: warning: Member data(int index) const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:363: warning: Member set_data(int index,::google::protobuf::int64 value) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:364: warning: Member add_data(::google::protobuf::int64 value) (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:366: warning: Member data() const (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:368: warning: Member mutable_data() (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:324: warning: Member descriptor() (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:325: warning: Member default_instance() (function) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:361: warning: Member kDataFieldNumber (variable) of class shogun::Int64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:395: warning: Member UInt64Chunk(const UInt64Chunk &from) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:397: warning: Member operator=(const UInt64Chunk &from) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:402: warning: Member unknown_fields() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:406: warning: Member mutable_unknown_fields() (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:413: warning: Member Swap(UInt64Chunk *other) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:417: warning: Member New() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:418: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:419: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:420: warning: Member CopyFrom(const UInt64Chunk &from) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:421: warning: Member MergeFrom(const UInt64Chunk &from) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:422: warning: Member Clear() (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:423: warning: Member IsInitialized() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:425: warning: Member ByteSize() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:426: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:428: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:430: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:431: warning: Member GetCachedSize() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:438: warning: Member GetMetadata() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:445: warning: Member data_size() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:446: warning: Member clear_data() (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:448: warning: Member data(int index) const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:449: warning: Member set_data(int index,::google::protobuf::uint64 value) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:450: warning: Member add_data(::google::protobuf::uint64 value) (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:452: warning: Member data() const (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:454: warning: Member mutable_data() (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:410: warning: Member descriptor() (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:411: warning: Member default_instance() (function) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:447: warning: Member kDataFieldNumber (variable) of class shogun::UInt64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:481: warning: Member Float32Chunk(const Float32Chunk &from) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:483: warning: Member operator=(const Float32Chunk &from) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:488: warning: Member unknown_fields() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:492: warning: Member mutable_unknown_fields() (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:499: warning: Member Swap(Float32Chunk *other) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:503: warning: Member New() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:504: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:505: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:506: warning: Member CopyFrom(const Float32Chunk &from) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:507: warning: Member MergeFrom(const Float32Chunk &from) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:508: warning: Member Clear() (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:509: warning: Member IsInitialized() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:511: warning: Member ByteSize() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:512: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:514: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:516: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:517: warning: Member GetCachedSize() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:524: warning: Member GetMetadata() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:531: warning: Member data_size() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:532: warning: Member clear_data() (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:534: warning: Member data(int index) const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:535: warning: Member set_data(int index, float value) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:536: warning: Member add_data(float value) (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:538: warning: Member data() const (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:540: warning: Member mutable_data() (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:496: warning: Member descriptor() (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:497: warning: Member default_instance() (function) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:533: warning: Member kDataFieldNumber (variable) of class shogun::Float32Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:567: warning: Member Float64Chunk(const Float64Chunk &from) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:569: warning: Member operator=(const Float64Chunk &from) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:574: warning: Member unknown_fields() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:578: warning: Member mutable_unknown_fields() (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:585: warning: Member Swap(Float64Chunk *other) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:589: warning: Member New() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:590: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:591: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:592: warning: Member CopyFrom(const Float64Chunk &from) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:593: warning: Member MergeFrom(const Float64Chunk &from) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:594: warning: Member Clear() (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:595: warning: Member IsInitialized() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:597: warning: Member ByteSize() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:598: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:600: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:602: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:603: warning: Member GetCachedSize() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:610: warning: Member GetMetadata() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:617: warning: Member data_size() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:618: warning: Member clear_data() (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:620: warning: Member data(int index) const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:621: warning: Member set_data(int index, double value) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:622: warning: Member add_data(double value) (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:624: warning: Member data() const (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:626: warning: Member mutable_data() (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:582: warning: Member descriptor() (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:583: warning: Member default_instance() (function) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.h:619: warning: Member kDataFieldNumber (variable) of class shogun::Float64Chunk is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:48: warning: Member VectorHeader(const VectorHeader &from) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:50: warning: Member operator=(const VectorHeader &from) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:55: warning: Member unknown_fields() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:59: warning: Member mutable_unknown_fields() (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:66: warning: Member Swap(VectorHeader *other) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:70: warning: Member New() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:71: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:72: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:73: warning: Member CopyFrom(const VectorHeader &from) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:74: warning: Member MergeFrom(const VectorHeader &from) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:75: warning: Member Clear() (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:76: warning: Member IsInitialized() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:78: warning: Member ByteSize() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:79: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:81: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:83: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:84: warning: Member GetCachedSize() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:91: warning: Member GetMetadata() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:98: warning: Member has_len() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:99: warning: Member clear_len() (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:101: warning: Member len() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:102: warning: Member set_len(::google::protobuf::uint64 value) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:105: warning: Member has_num_messages() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:106: warning: Member clear_num_messages() (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:108: warning: Member num_messages() const (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:109: warning: Member set_num_messages(::google::protobuf::uint32 value) (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:63: warning: Member descriptor() (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:64: warning: Member default_instance() (function) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:100: warning: Member kLenFieldNumber (variable) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:107: warning: Member kNumMessagesFieldNumber (variable) of class shogun::VectorHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:140: warning: Member MatrixHeader(const MatrixHeader &from) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:142: warning: Member operator=(const MatrixHeader &from) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:147: warning: Member unknown_fields() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:151: warning: Member mutable_unknown_fields() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:158: warning: Member Swap(MatrixHeader *other) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:162: warning: Member New() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:163: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:164: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:165: warning: Member CopyFrom(const MatrixHeader &from) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:166: warning: Member MergeFrom(const MatrixHeader &from) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:167: warning: Member Clear() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:168: warning: Member IsInitialized() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:170: warning: Member ByteSize() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:171: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:173: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:175: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:176: warning: Member GetCachedSize() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:183: warning: Member GetMetadata() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:190: warning: Member has_num_cols() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:191: warning: Member clear_num_cols() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:193: warning: Member num_cols() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:194: warning: Member set_num_cols(::google::protobuf::uint64 value) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:197: warning: Member has_num_rows() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:198: warning: Member clear_num_rows() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:200: warning: Member num_rows() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:201: warning: Member set_num_rows(::google::protobuf::uint64 value) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:204: warning: Member has_num_messages() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:205: warning: Member clear_num_messages() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:207: warning: Member num_messages() const (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:208: warning: Member set_num_messages(::google::protobuf::uint32 value) (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:155: warning: Member descriptor() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:156: warning: Member default_instance() (function) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:192: warning: Member kNumColsFieldNumber (variable) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:199: warning: Member kNumRowsFieldNumber (variable) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:206: warning: Member kNumMessagesFieldNumber (variable) of class shogun::MatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:242: warning: Member SparseMatrixHeader(const SparseMatrixHeader &from) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:244: warning: Member operator=(const SparseMatrixHeader &from) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:249: warning: Member unknown_fields() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:253: warning: Member mutable_unknown_fields() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:260: warning: Member Swap(SparseMatrixHeader *other) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:264: warning: Member New() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:265: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:266: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:267: warning: Member CopyFrom(const SparseMatrixHeader &from) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:268: warning: Member MergeFrom(const SparseMatrixHeader &from) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:269: warning: Member Clear() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:270: warning: Member IsInitialized() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:272: warning: Member ByteSize() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:273: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:275: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:277: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:278: warning: Member GetCachedSize() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:285: warning: Member GetMetadata() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:292: warning: Member has_num_vectors() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:293: warning: Member clear_num_vectors() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:295: warning: Member num_vectors() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:296: warning: Member set_num_vectors(::google::protobuf::uint64 value) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:299: warning: Member has_num_features() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:300: warning: Member clear_num_features() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:302: warning: Member num_features() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:303: warning: Member set_num_features(::google::protobuf::uint64 value) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:306: warning: Member num_feat_entries_size() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:307: warning: Member clear_num_feat_entries() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:309: warning: Member num_feat_entries(int index) const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:310: warning: Member set_num_feat_entries(int index,::google::protobuf::uint64 value) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:311: warning: Member add_num_feat_entries(::google::protobuf::uint64 value) (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:313: warning: Member num_feat_entries() const (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:315: warning: Member mutable_num_feat_entries() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:257: warning: Member descriptor() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:258: warning: Member default_instance() (function) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:294: warning: Member kNumVectorsFieldNumber (variable) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:301: warning: Member kNumFeaturesFieldNumber (variable) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:308: warning: Member kNumFeatEntriesFieldNumber (variable) of class shogun::SparseMatrixHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:347: warning: Member StringListHeader(const StringListHeader &from) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:349: warning: Member operator=(const StringListHeader &from) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:354: warning: Member unknown_fields() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:358: warning: Member mutable_unknown_fields() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:365: warning: Member Swap(StringListHeader *other) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:369: warning: Member New() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:370: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:371: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:372: warning: Member CopyFrom(const StringListHeader &from) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:373: warning: Member MergeFrom(const StringListHeader &from) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:374: warning: Member Clear() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:375: warning: Member IsInitialized() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:377: warning: Member ByteSize() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:378: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:380: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:382: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:383: warning: Member GetCachedSize() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:390: warning: Member GetMetadata() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:397: warning: Member has_num_str() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:398: warning: Member clear_num_str() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:400: warning: Member num_str() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:401: warning: Member set_num_str(::google::protobuf::uint64 value) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:404: warning: Member has_max_string_len() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:405: warning: Member clear_max_string_len() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:407: warning: Member max_string_len() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:408: warning: Member set_max_string_len(::google::protobuf::uint64 value) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:411: warning: Member str_len_size() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:412: warning: Member clear_str_len() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:414: warning: Member str_len(int index) const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:415: warning: Member set_str_len(int index,::google::protobuf::uint64 value) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:416: warning: Member add_str_len(::google::protobuf::uint64 value) (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:418: warning: Member str_len() const (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:420: warning: Member mutable_str_len() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:362: warning: Member descriptor() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:363: warning: Member default_instance() (function) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:399: warning: Member kNumStrFieldNumber (variable) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:406: warning: Member kMaxStringLenFieldNumber (variable) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Headers.pb.h:413: warning: Member kStrLenFieldNumber (variable) of class shogun::StringListHeader is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:115: warning: Member SGDataType (typedef) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:68: warning: Member ShogunVersion(const ShogunVersion &from) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:70: warning: Member operator=(const ShogunVersion &from) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:75: warning: Member unknown_fields() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:79: warning: Member mutable_unknown_fields() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:86: warning: Member Swap(ShogunVersion *other) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:90: warning: Member New() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:91: warning: Member CopyFrom(const ::google::protobuf::Message &from) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:92: warning: Member MergeFrom(const ::google::protobuf::Message &from) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:93: warning: Member CopyFrom(const ShogunVersion &from) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:94: warning: Member MergeFrom(const ShogunVersion &from) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:95: warning: Member Clear() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:96: warning: Member IsInitialized() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:98: warning: Member ByteSize() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:99: warning: Member MergePartialFromCodedStream(::google::protobuf::io::CodedInputStream *input) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:101: warning: Member SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream *output) const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:103: warning: Member SerializeWithCachedSizesToArray(::google::protobuf::uint8 *output) const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:104: warning: Member GetCachedSize() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:111: warning: Member GetMetadata() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:145: warning: Member has_version() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:146: warning: Member clear_version() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:148: warning: Member version() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:149: warning: Member set_version(::google::protobuf::int32 value) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:152: warning: Member has_data_type() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:153: warning: Member clear_data_type() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:155: warning: Member data_type() const (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:156: warning: Member set_data_type(::shogun::ShogunVersion_SGDataType value) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:83: warning: Member descriptor() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:84: warning: Member default_instance() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:121: warning: Member SGDataType_IsValid(int value) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:131: warning: Member SGDataType_descriptor() (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:134: warning: Member SGDataType_Name(SGDataType value) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:137: warning: Member SGDataType_Parse(const ::std::string &name, SGDataType *value) (function) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:116: warning: Member VECTOR (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:117: warning: Member MATRIX (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:118: warning: Member SPARSE_VECTOR (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:119: warning: Member SPARSE_MATRIX (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:120: warning: Member STRING_LIST (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:124: warning: Member SGDataType_MIN (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:126: warning: Member SGDataType_MAX (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:128: warning: Member SGDataType_ARRAYSIZE (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:147: warning: Member kVersionFieldNumber (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/io/protobuf/ShogunVersion.pb.h:154: warning: Member kDataTypeFieldNumber (variable) of class shogun::ShogunVersion is not documented.
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:1810: warning: Member linspace(complex128_t start, complex128_t end, int32_t n) (function) of class shogun::CMath is not documented.
/home/bee/Downloads/shogun/src/shogun/mathematics/Statistics.h:669: warning: Member mean(SGVector< complex128_t > vec) (function) of class shogun::CStatistics is not documented.
[ 3%] [ 3%] [ 3%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ensemble/CombinationRule.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/ensemble/MeanRule.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/ensemble/WeightedMajorityVote.cpp.o
[ 3%] [ 3%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ensemble/MajorityVote.cpp.o
[ 3%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/metric/LMNN.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/metric/LMNNImpl.cpp.o
[ 3%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/Cplex.cpp.o
[ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/Math.cpp.o
[ 4%] [ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/Statistics.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/SparseInverseCovariance.cpp.o
[ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/munkres.cpp.o
[ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/JacobiEllipticFunctions.cpp.o
[ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/ajd/FFDiag.cpp.o
[ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/ajd/QDiag.cpp.o
[ 4%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/ajd/JADiagOrth.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/ajd/JADiag.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/ajd/JediDiag.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/ajd/UWedge.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/Mosek.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/lapack.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/eigen3.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/Integration.cpp.o
[ 5%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/opfunc/OperatorFunction.cpp.o
[ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/opfunc/RationalApproximation.cpp.o
[ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/LogDetEstimator.cpp.o
[ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/opfunc/DenseMatrixExactLog.cpp.o
[ 6%] [ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/opfunc/LogRationalApproximationIndividual.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/opfunc/LogRationalApproximationCGM.cpp.o
/home/bee/Downloads/shogun/src/shogun/mathematics/Statistics.h:38: warning: argument 'values' of command @param is not found in the argument list of shogun::CStatistics::mean(SGVector< T > vec)
/home/bee/Downloads/shogun/src/shogun/mathematics/Statistics.h:38: warning: The following parameters of shogun::CStatistics::mean(SGVector< T > vec) are not documented:
parameter 'vec'
[ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/computation/job/RationalApproximationIndividualJob.cpp.o
[ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/computation/job/DenseExactLogJob.cpp.o
[ 6%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/computation/job/RationalApproximationCGMJob.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/logdet/computation/aggregator/IndividualJobResultAggregator.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/tracesampler/ProbingSampler.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/ratapprox/tracesampler/NormalSampler.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linop/MatrixOperator.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linop/DenseMatrixOperator.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linop/LinearOperator.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linop/SparseMatrixOperator.cpp.o
[ 7%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/eigsolver/LanczosEigenSolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/eigsolver/DirectEigenSolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/DirectSparseLinearSolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/ConjugateOrthogonalCGSolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/CGMShiftedFamilySolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/IterativeShiftedLinearFamilySolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/LinearSolver.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/DirectLinearSolverComplex.cpp.o
[ 8%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/ConjugateGradientSolver.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/linalg/linsolver/IterativeLinearSolver.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/mathematics/Random.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/FeatureSelection.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/PCA.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/RandomFourierGaussPreproc.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/KernelPCA.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/HomogeneousKernelMap.cpp.o
[ 9%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/DensePreprocessor.cpp.o
[ 10%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/FisherLDA.cpp.o
[ 10%] [ 10%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/DependenceMaximization.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/DimensionReductionPreprocessor.cpp.o
[ 10%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/LogPlusOne.cpp.o
[ 10%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/DecompressString.cpp.o
[ 10%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/SumOne.cpp.o
[ 10%] [ 10%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/NormOne.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/SortUlongString.cpp.o
[ 11%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/PNorm.cpp.o
[ 11%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/KernelDependenceMaximization.cpp.o
[ 11%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/PruneVarSubMean.cpp.o
[ 11%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/BAHSIC.cpp.o
[ 11%] [ 11%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/RescaleFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/preprocessor/SortWordString.cpp.o
[ 11%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/AttributeFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/RealFileFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/HashedWDFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/LatentFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/DenseFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/Subset.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/DummyFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingVwFeatures.cpp.o
[ 12%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingDenseFeatures.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingFeatures.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingStringFeatures.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingHashedDocDotFeatures.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingSparseFeatures.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/generators/MeanShiftDataGenerator.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/generators/GaussianBlobsDataGenerator.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingHashedSparseFeatures.cpp.o
[ 13%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingDotFeatures.cpp.o
[ 14%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/streaming/StreamingHashedDenseFeatures.cpp.o
[ 14%] [ 14%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/StringFileFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/FactorGraphFeatures.cpp.o
[ 14%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/PolyFeatures.cpp.o
[ 14%] [ 14%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/DotFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/SNPFeatures.cpp.o
[ 14%] Generating modshogun_doxygen.i
[ 14%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/MatrixFeatures.cpp.o
[ 14%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/ImplicitWeightedSpecFeatures.cpp.o
[ 15%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/Alphabet.cpp.o
[ 15%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/CombinedFeatures.cpp.o
[ 15%] [ 15%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/HashedDenseFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/WDFeatures.cpp.o
[ 15%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/HashedWDFeaturesTransposed.cpp.o
[ 15%] [ 15%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/Features.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/HashedSparseFeatures.cpp.o
[ 15%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/DataGenerator.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/CombinedDotFeatures.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/HashedDocDotFeatures.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/LBPPyrDotFeatures.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/StringFeatures.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/DenseSubsetFeatures.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/ExplicitSpecFeatures.cpp.o
[ 16%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/SparsePolyFeatures.cpp.o
[ 17%] [ 17%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/IndexFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/RandomFourierDotFeatures.cpp.o
[ 17%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/TOPFeatures.cpp.o
[ 17%] [ 17%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/FKFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/SubsetStack.cpp.o
[ 17%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/BinnedDotFeatures.cpp.o
[ 17%] [ 17%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/SparseFeatures.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/features/RandomKitchenSinksDotFeatures.cpp.o
[ 17%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/modelselection/ModelSelectionParameters.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/modelselection/GradientModelSelection.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/modelselection/ModelSelection.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/modelselection/RandomSearchModelSelection.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/modelselection/ParameterCombination.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/modelselection/GridSearchModelSelection.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/ExponentialLoss.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/AbsoluteDeviationLoss.cpp.o
[ 18%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/SquaredLoss.cpp.o
[ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/LogLoss.cpp.o
[ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/SmoothHingeLoss.cpp.o
[ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/HuberLoss.cpp.o
[ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/LogLossMargin.cpp.o
[ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/HingeLoss.cpp.o
[ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/loss/SquaredHingeLoss.cpp.o
[ 19%] [ 19%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelection.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/KernelMeanMatching.cpp.o
[ 20%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/IndependenceTest.cpp.o
[ 20%] [ 20%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/NOCCO.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/LinearTimeMMD.cpp.o
[ 20%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/HSIC.cpp.o
[ 20%] [ 20%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelectionMax.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/KernelSelection.cpp.o
[ 20%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/KernelTwoSampleTest.cpp.o
[ 20%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelectionCombOpt.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelectionOpt.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelectionMedian.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelectionComb.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/MMDKernelSelectionCombMaxL2.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/QuadraticTimeMMD.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/StreamingMMD.cpp.o
[ 21%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/TwoSampleTest.cpp.o
[ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/KernelIndependenceTest.cpp.o
[ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/statistics/HypothesisTest.cpp.o
[ 22%] [ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/RegressionLabels.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/FactorGraphLabels.cpp.o
[ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/LabelsFactory.cpp.o
[ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/BinaryLabels.cpp.o
[ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/LatentLabels.cpp.o
[ 22%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/Labels.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/MultilabelLabels.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/StructuredLabels.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/DenseLabels.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/labels/MulticlassLabels.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/KernelRidgeRegression.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/svr/MKLRegression.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/svr/LibSVR.cpp.o
[ 23%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/svr/SVRLight.cpp.o
[ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/svr/LibLinearRegression.cpp.o
[ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/GaussianProcessRegression.cpp.o
[ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/LinearRidgeRegression.cpp.o
[ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/LeastAngleRegression.cpp.o
[ 24%] [ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/EmbeddingConverter.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/regression/LeastSquaresRegression.cpp.o
[ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/Jade.cpp.o
[ 24%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/SOBI.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/FastICA.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/JediSep.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/FFSep.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/UWedgeSep.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ica/ICAConverter.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/LaplacianEigenmaps.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/HessianLocallyLinearEmbedding.cpp.o
[ 25%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/FactorAnalysis.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/ManifoldSculpting.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/MultidimensionalScaling.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/HashedDocConverter.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/LocalTangentSpaceAlignment.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/KernelLocallyLinearEmbedding.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/LocallyLinearEmbedding.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/LocalityPreservingProjections.cpp.o
[ 26%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/StochasticProximityEmbedding.cpp.o
[ 27%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/DiffusionMaps.cpp.o
[ 27%] [ 27%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/TDistributedStochasticNeighborEmbedding.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/NeighborhoodPreservingEmbedding.cpp.o
[ 27%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/LinearLocalTangentSpaceAlignment.cpp.o
[ 27%] [ 27%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/converter/Isomap.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/domain_adaptation/DomainAdaptationSVMLinear.cpp.o
[ 27%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/domain_adaptation/DomainAdaptationMulticlassLibLinear.cpp.o
[ 27%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/domain_adaptation/DomainAdaptationSVM.cpp.o
[ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/TaskGroup.cpp.o
[ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/TaskTree.cpp.o
[ 28%] [ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskClusteredLogisticRegression.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskL12LogisticRegression.cpp.o
[ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskTraceLogisticRegression.cpp.o
[ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskLogisticRegression.cpp.o
[ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskLinearMachine.cpp.o
[ 28%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskLeastSquaresRegression.cpp.o
[ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/MultitaskROCEvaluation.cpp.o
[ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/LibLinearMTL.cpp.o
[ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/transfer/multitask/Task.cpp.o
[ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/streaming/StreamingFile.cpp.o
[ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/streaming/StreamingVwCacheFile.cpp.o
[ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/streaming/StreamingAsciiFile.cpp.o
[ 29%] [ 29%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/streaming/StreamingVwFile.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/streaming/StreamingFileFromFeatures.cpp.o
[ 30%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/MLDataHDF5File.cpp.o
[ 30%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableHdf5Reader00.cpp.o
[ 30%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableAsciiReader00.cpp.o
[ 30%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/CSVFile.cpp.o
[ 30%] [ 30%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/LibSVMFile.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/BinaryFile.cpp.o
[ 30%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SGIO.cpp.o
[ 30%] [ 31%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableJsonFile.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableFile.cpp.o
[ 31%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableXmlFile.cpp.o
[ 31%] [ 31%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/IOBuffer.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/File.cpp.o
[ 31%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableXmlReader00.cpp.o
[ 31%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableJsonReader00.cpp.o
[ 31%] [ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableAsciiFile.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/HDF5File.cpp.o
[ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/ProtobufFile.cpp.o
[ 32%] [ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/UAIFile.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/Parser.cpp.o
[ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/SerializableHdf5File.cpp.o
[ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/LineReader.cpp.o
[ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/LinearMachine.cpp.o
[ 32%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/LinearStructuredOutputMachine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/RandomForest.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/KernelMulticlassMachine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/KernelStructuredOutputMachine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/Machine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/StructuredOutputMachine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/LinearLatentMachine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/OnlineLinearMachine.cpp.o
[ 33%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/KernelMachine.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/StochasticGBMachine.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/DistanceMachine.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/BaggingMachine.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/GaussianProcessMachine.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/BaseMulticlassMachine.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/VariationalGaussianLikelihood.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/MultiLaplacianInferenceMethod.cpp.o
[ 34%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/KLDualInferenceMethod.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/EPInferenceMethod.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/SingleLaplacianInferenceMethod.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/ConstMean.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/NumericalVGLikelihood.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/InferenceMethod.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/ZeroMean.cpp.o
[ 35%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/StudentsTLikelihood.cpp.o
[ 35%] [ 36%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/KLInferenceMethod.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/DualVariationalGaussianLikelihood.cpp.o
[ 36%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/LogitDVGLikelihood.cpp.o
[ 36%] [ 36%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/LogitVGLikelihood.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/ProbitLikelihood.cpp.o
[ 36%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/SoftMaxLikelihood.cpp.o
[ 36%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/MatrixOperations.cpp.o
[ 36%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/VariationalLikelihood.cpp.o
[ 36%] [ 37%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/KLCovarianceInferenceMethod.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/LikelihoodModel.cpp.o
[ 37%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/KLApproxDiagonalInferenceMethod.cpp.o
[ 37%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/StudentsTVGLikelihood.cpp.o
[ 37%] [ 37%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/SingleLaplacianInferenceMethodWithLBFGS.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/KLCholeskyInferenceMethod.cpp.o
[ 37%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/FITCInferenceMethod.cpp.o
[ 37%] [ 37%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/ExactInferenceMethod.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/GaussianLikelihood.cpp.o
[ 38%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/LogitVGPiecewiseBoundLikelihood.cpp.o
[ 38%] [ 38%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/LaplacianInferenceBase.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/KLLowerTriangularInferenceMethod.cpp.o
[ 38%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/LogitLikelihood.cpp.o
[ 38%] [ 38%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/gp/ProbitVGLikelihood.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/machine/MulticlassMachine.cpp.o
[ 38%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/memory.cpp.o
[ 38%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/GPUVector.cpp.o
[ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/tapkee/tapkee_shogun.cpp.o
[ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/DataType.cpp.o
[ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/slep_mc_tree_lr.cpp.o
[ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/slep_mc_plain_lr.cpp.o
[ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/SpInvCoVa/invCov.cpp.o
[ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/tree/general_altra.cpp.o
[ 39%] [ 39%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/tree/altra.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/q1/eppMatrix.cpp.o
[ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/q1/epph.cpp.o
[ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/flsa/tesla_proj.cpp.o
[ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/flsa/flsa.cpp.o
[ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/flsa/sfa.cpp.o
[ 40%] [ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/overlapping/overlapping.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/slep/slep_solver.cpp.o
[ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/brent.cpp.o
[ 40%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/gpm.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/gpdt.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/libocas.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/shogun_libsvm.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/libqp_gsmo.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/gpdtsolve.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/libqp_splx.cpp.o
[ 41%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/pr_loqo.cpp.o
[ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/external/ssl.cpp.o
[ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGReferencedData.cpp.o
[ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Tokenizer.cpp.o
[ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/GPUMatrix.cpp.o
[ 42%] [ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGNDArray.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Data.cpp.o
[ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/malsar/malsar_low_rank.cpp.o
[ 42%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/malsar/malsar_clustered.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/malsar/malsar_joint_feature_learning.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Lock.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/IndexBlockRelation.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/computation/jobresult/VectorResult.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/computation/jobresult/ScalarResult.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/computation/aggregator/StoreScalarAggregator.cpp.o
[ 43%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/computation/aggregator/StoreVectorAggregator.cpp.o
[ 43%] [ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/computation/engine/SerialComputationEngine.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Time.cpp.o
[ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGString.cpp.o
[ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/IndexBlockTree.cpp.o
[ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/NGramTokenizer.cpp.o
[ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/CircularBuffer.cpp.o
[ 44%] [ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Compressor.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/StructuredData.cpp.o
[ 44%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGMatrixList.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/DelimiterTokenizer.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/OpenCV/OpenCVTypeName.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/OpenCV/CV2SGFactory.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/OpenCV/SG2CVFactory.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGSparseMatrix.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGVector.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGMatrix.cpp.o
[ 45%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Signal.cpp.o
[ 46%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Trie.cpp.o
[ 46%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/Hash.cpp.o
[ 46%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/RefCount.cpp.o
[ 46%] [ 46%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/ShogunException.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGSparseVector.cpp.o
[ 46%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/SGStringList.cpp.o
[ 46%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/IndexBlock.cpp.o
[ 46%] [ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/lib/IndexBlockGroup.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/SplineKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/CombinedKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/GaussianShortRealKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/CauchyKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/WeightedDegreeRBFKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/MultiquadricKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/RationalQuadraticKernel.cpp.o
[ 47%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/ExponentialKernel.cpp.o
[ 48%] [ 48%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/JensenShannonKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/BesselKernel.cpp.o
[ 48%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/ConstKernel.cpp.o
[ 48%] [ 48%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/WaveKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/Chi2Kernel.cpp.o
[ 48%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/LinearARDKernel.cpp.o
[ 48%] [ 48%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/GaussianARDKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/AUCKernel.cpp.o
[ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/HistogramIntersectionKernel.cpp.o
[ 49%] [ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/CustomKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/CircularKernel.cpp.o
[ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/PolyKernel.cpp.o
[ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/LogKernel.cpp.o
[ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/TStudentKernel.cpp.o
[ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/TensorProductPairKernel.cpp.o
[ 49%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/PyramidChi2.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/DiagKernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/ANOVAKernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/GaussianKernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/Kernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/SphericalKernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/DistanceKernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/ProductKernel.cpp.o
[ 50%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/LinearKernel.cpp.o
[ 51%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/GaussianShiftKernel.cpp.o
[ 51%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/PowerKernel.cpp.o
[ 51%] [ 51%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/InverseMultiQuadricKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/WaveletKernel.cpp.o
[ 51%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/SigmoidKernel.cpp.o
[ 51%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SparseSpatialSampleStringKernel.cpp.o
[ 51%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SalzbergWordStringKernel.cpp.o
[ 52%] [ 52%] [ 52%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/DistantSegmentsKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/PolyMatchWordStringKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/PolyMatchStringKernel.cpp.o
[ 52%] [ 52%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/CommWordStringKernel.cpp.o
[ 52%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/CommUlongStringKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/LocalityImprovedStringKernel.cpp.o
[ 52%] [ 52%] [ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/RegulatoryModulesStringKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/WeightedDegreeStringKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/FixedDegreeStringKernel.cpp.o
[ 53%] [ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/WeightedCommWordStringKernel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/OligoStringKernel.cpp.o
[ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SpectrumRBFKernel.cpp.o
[ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SimpleLocalityImprovedStringKernel.cpp.o
[ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SubsequenceStringKernel.cpp.o
[ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/LocalAlignmentStringKernel.cpp.o
[ 53%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/LinearStringKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/GaussianMatchStringKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/HistogramWordStringKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/WeightedDegreePositionStringKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SpectrumMismatchRBFKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/MatchWordStringKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/kernel/string/SNPStringKernel.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/optimization/liblinear/tron.cpp.o
[ 54%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/optimization/liblinear/shogun_liblinear.cpp.o
[ 55%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/optimization/lbfgs/lbfgs.cpp.o
[ 55%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ica/AmariIndex.cpp.o
[ 55%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ica/PermutationMatrix.cpp.o
[ 55%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/PRCEvaluation.cpp.o
[ 55%] [ 55%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MeanAbsoluteError.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MeanSquaredLogError.cpp.o
[ 55%] [ 55%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/SplittingStrategy.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/LOOCrossValidationSplitting.cpp.o
[ 56%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ClusteringEvaluation.cpp.o
[ 56%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ClusteringAccuracy.cpp.o
[ 56%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MulticlassAccuracy.cpp.o
[ 56%] [ 56%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/CrossValidationSplitting.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/StratifiedCrossValidationSplitting.cpp.o
[ 56%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MultilabelAccuracy.cpp.o
[ 56%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/CrossValidationMulticlassStorage.cpp.o
[ 56%] [ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/CrossValidation.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/StructuredAccuracy.cpp.o
[ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MeanSquaredError.cpp.o
[ 57%] [ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/CrossValidationPrintOutput.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MachineEvaluation.cpp.o
[ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ContingencyTableEvaluation.cpp.o
[ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ClusteringMutualInformation.cpp.o
[ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/GradientEvaluation.cpp.o
[ 57%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/DifferentiableFunction.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/ROCEvaluation.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/CrossValidationMKLStorage.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/evaluation/MulticlassOVREvaluation.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/Parallel.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/init.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/Version.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/ParameterMap.cpp.o
[ 58%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/Parameter.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/SGObject.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassSVM.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassOneVsOneStrategy.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassLibLinear.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/LaRank.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ShareBoostOptimizer.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCIHDDecoder.cpp.o
[ 59%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCForestEncoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCStrategy.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCSimpleDecoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCRandomSparseEncoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCDecoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCOVREncoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCLLBDecoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCDiscriminantEncoder.cpp.o
[ 60%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCRandomDenseEncoder.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ecoc/ECOCOVOEncoder.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/KNN.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/GaussianNaiveBayes.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ShareBoost.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassOCAS.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassLogisticRegression.cpp.o
[ 61%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassTreeGuidedLogisticRegression.cpp.o
[ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/GMNPLib.cpp.o
[ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/CARTree.cpp.o
[ 62%] [ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/RelaxedTree.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/C45ClassifierTree.cpp.o
[ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/ID3ClassifierTree.cpp.o
[ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/KNNHeap.cpp.o
[ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/BalancedConditionalProbabilityTree.cpp.o
[ 62%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/ConditionalProbabilityTree.cpp.o
[ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/KDTree.cpp.o
[ 63%] [ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/VwConditionalProbabilityTree.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/RandomConditionalProbabilityTree.cpp.o
[ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/CHAIDTree.cpp.o
[ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/BallTree.cpp.o
[ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/RelaxedTreeUtil.cpp.o
[ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/NbodyTree.cpp.o
[ 63%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/tree/RandomCARTree.cpp.o
[ 64%] [ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassLibSVM.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/QDA.cpp.o
[ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/ScatterSVM.cpp.o
[ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassOneVsRestStrategy.cpp.o
[ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MCLDA.cpp.o
[ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/GMNPSVM.cpp.o
[ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/multiclass/MulticlassStrategy.cpp.o
[ 64%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralConvolutionalLayer.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralSoftmaxLayer.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralLinearLayer.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralInputLayer.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/DeepAutoencoder.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/ConvolutionalFeatureMap.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralLogisticLayer.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/DeepBeliefNetwork.cpp.o
[ 65%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralLayer.cpp.o
[ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/Autoencoder.cpp.o
[ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralRectifiedLinearLayer.cpp.o
[ 66%] [ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralNetwork.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/NeuralLayers.cpp.o
[ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/neuralnets/RBM.cpp.o
[ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIDistance.cpp.o
[ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIPluginEstimate.cpp.o
[ 66%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/SGInterface.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUILabels.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIStructure.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIFeatures.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIMath.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUITime.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIHMM.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIConverter.cpp.o
[ 67%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIClassifier.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIPreprocessor.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/ui/GUIKernel.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/latent/LatentModel.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/latent/DirectorLatentModel.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/latent/LatentSOSVM.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/latent/LatentSVM.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/MulticlassModel.cpp.o
[ 68%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/PlifArray.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/HMSVMModel.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/MultilabelSOLabels.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/FWSOSVM.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/TwoStateModel.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/MultilabelCLRModel.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/MAPInference.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/FactorType.cpp.o
[ 69%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/StateModel.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/SOSVMHelper.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/FactorGraphModel.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/MulticlassSOLabels.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/DirectorStructuredModel.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/PlifMatrix.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/libppbm.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/GraphCut.cpp.o
[ 70%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/BeliefPropagation.cpp.o
[ 71%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/HierarchicalMultilabelModel.cpp.o
[ 71%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/SequenceLabels.cpp.o
[ 71%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/HashedMultilabelModel.cpp.o
[ 71%] [ 71%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/StructuredModel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/FactorGraph.cpp.o
[ 71%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/SegmentLoss.cpp.o
[ 71%] [ 72%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/libbmrm.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/Factor.cpp.o
[ 72%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/libncbm.cpp.o
[ 72%] [ 72%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/MultilabelModel.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/IntronList.cpp.o
[ 72%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/CCSOSVM.cpp.o
[ 72%] [ 72%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/Plif.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/DualLibQPBMSOSVM.cpp.o
[ 72%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/PrimalMosekSOSVM.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/DisjointSet.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/libp3bm.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/StochasticSOSVM.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/structure/DynProg.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/FeatureBlockLogisticRegression.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/LPM.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/NearestCentroid.cpp.o
[ 73%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/LPBoost.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/NewtonSVM.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/LibSVMOneClass.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SVMSGD.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/OnlineSVMSGD.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SVM.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/GPBTSVM.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SVMOcas.cpp.o
[ 74%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SVMLightOneClass.cpp.o
[ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/QPBSVMLib.cpp.o
[ 75%] [ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/GNPPLib.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SVMLin.cpp.o
[ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SGDQN.cpp.o
[ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/MPDSVM.cpp.o
[ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/CPLEXSVM.cpp.o
[ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/SVMLight.cpp.o
[ 75%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/WDSVMOcas.cpp.o
[ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/GNPPSVM.cpp.o
[ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/LibLinear.cpp.o
[ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/OnlineLibLinear.cpp.o
[ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/svm/LibSVM.cpp.o
[ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/Perceptron.cpp.o
[ 76%] [ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKLMulticlassOptimizationBase.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKLClassification.cpp.o
[ 76%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKLMulticlass.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKLMulticlassGLPK.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKL.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKLOneClass.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/mkl/MKLMulticlassGradient.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/AveragedPerceptron.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/vw_math.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/learners/VwAdaptiveLearner.cpp.o
[ 77%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/learners/VwNonAdaptiveLearner.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/VwParser.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/vw_label.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/VowpalWabbit.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/VwEnvironment.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/vw_example.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/VwRegressor.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/cache/VwNativeCacheReader.cpp.o
[ 78%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/cache/VwCacheWriter.cpp.o
[ 79%] [ 79%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/cache/VwCacheReader.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/vw/cache/VwNativeCacheWriter.cpp.o
[ 79%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/GaussianProcessClassification.cpp.o
[ 79%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/PluginEstimate.cpp.o
[ 79%] [ 79%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/classifier/LDA.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/ManhattanMetric.cpp.o
[ 79%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/CanberraMetric.cpp.o
[ 79%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/EuclideanDistance.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/ManhattanWordDistance.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/ChebyshewMetric.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/JensenMetric.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/MahalanobisDistance.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/HammingWordDistance.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/ChiSquareDistance.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/CosineDistance.cpp.o
[ 80%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/AttenuatedEuclideanDistance.cpp.o
[ 81%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/CanberraWordDistance.cpp.o
[ 81%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/Distance.cpp.o
[ 81%] [ 81%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/GeodesicMetric.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/KernelDistance.cpp.o
[ 81%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/CustomMahalanobisDistance.cpp.o
[ 81%] [ 81%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/DenseDistance.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/BrayCurtisDistance.cpp.o
[ 82%] [ 82%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/TanimotoDistance.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/SparseEuclideanDistance.cpp.o
[ 82%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/CustomDistance.cpp.o
[ 82%] [ 82%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distance/MinkowskiMetric.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/clustering/KMeansLloydImpl.cpp.o
[ 82%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/clustering/Hierarchical.cpp.o
[ 82%] [ 82%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/clustering/GMM.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/clustering/KMeans.cpp.o
[ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/clustering/KMeansMiniBatchImpl.cpp.o
[ 83%] [ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/HMM.cpp.o
Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/Gaussian.cpp.o
[ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/classical/GaussianDistribution.cpp.o
[ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/classical/ProbabilityDistribution.cpp.o
[ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/MixtureModel.cpp.o
[ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/LinearHMM.cpp.o
[ 83%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/Histogram.cpp.o
[ 84%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/EMMixtureModel.cpp.o
[ 84%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/Distribution.cpp.o
[ 84%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/PositionalPWM.cpp.o
[ 84%] [ 84%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/distributions/KernelDensity.cpp.o
Building C object src/shogun/CMakeFiles/libshogun.dir/lib/external/dSFMT/dSFMT.c.o
[ 84%] Building C object src/shogun/CMakeFiles/libshogun.dir/lib/external/PMurHash.c.o
[ 84%] Building C object src/shogun/CMakeFiles/libshogun.dir/lib/external/SFMT/SFMT.c.o
[ 84%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/protobuf/Headers.pb.cc.o
[ 85%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/protobuf/ShogunVersion.pb.cc.o
[ 85%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/io/protobuf/Chunks.pb.cc.o
[ 85%] Building CXX object src/shogun/CMakeFiles/libshogun.dir/base/class_list.cpp.o
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::BoolChunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:395:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::Int32Chunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:620:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::UInt32Chunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:848:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::Int64Chunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:1076:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::UInt64Chunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:1304:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::Float32Chunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:1532:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc: In member function ‘virtual int shogun::Float64Chunk::ByteSize() const’:
/home/bee/Downloads/shogun/src/shogun/io/protobuf/Chunks.pb.cc:1757:9: warning: declaration of ‘data_size’ shadows a member of 'this' [-Wshadow]
int data_size = 0;
^
[ 86%] Built target libshogun
Scanning dependencies of target shogun
Scanning dependencies of target shogun-static
Linking CXX static library libshogun.a
Linking CXX shared library libshogun.so
[ 86%] Built target shogun-static
[ 86%] Built target shogun
Scanning dependencies of target base_load_file_parameters
Scanning dependencies of target base_load_all_file_parameters
Scanning dependencies of target balanced_conditional_probability_tree
[ 86%] [ 86%] Building CXX object examples/undocumented/libshogun/CMakeFiles/base_load_all_file_parameters.dir/base_load_all_file_parameters.cpp.o
Building CXX object examples/undocumented/libshogun/CMakeFiles/base_load_file_parameters.dir/base_load_file_parameters.cpp.o
[ 86%] Building CXX object examples/undocumented/libshogun/CMakeFiles/balanced_conditional_probability_tree.dir/balanced_conditional_probability_tree.cpp.o
Linking CXX executable base_load_file_parameters
Linking CXX executable base_load_all_file_parameters
Linking CXX executable balanced_conditional_probability_tree
[ 86%] Built target balanced_conditional_probability_tree
CMakeFiles/base_load_all_file_parameters.dir/base_load_all_file_parameters.cpp.o: In CMakeFiles/base_load_file_parameters.dir/base_load_file_parameters.cpp.o: In function test_load_file_parameters()': base_load_file_parameters.cpp:(.text+0x76): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
function test_load_file_parameter()': base_load_all_file_parameters.cpp:(.text+0x90): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
Scanning dependencies of target base_map_parameters
[ 86%] [ 86%] Built target base_load_file_parameters
Built target base_load_all_file_parameters
Scanning dependencies of target base_migration_multiple_dependencies
Scanning dependencies of target base_migration_dropping_and_new
[ 86%] Building CXX object examples/undocumented/libshogun/CMakeFiles/base_map_parameters.dir/base_map_parameters.cpp.o
[ 86%] Building CXX object examples/undocumented/libshogun/CMakeFiles/base_migration_multiple_dependencies.dir/base_migration_multiple_dependencies.cpp.o
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/base_migration_dropping_and_new.dir/base_migration_dropping_and_new.cpp.o
Linking CXX executable base_map_parameters
Linking CXX executable base_migration_multiple_dependencies
Linking CXX executable base_migration_dropping_and_new
CMakeFiles/base_migration_multiple_dependencies.dir/base_migration_multiple_dependencies.cpp.o: In function test_migration()': base_migration_multiple_dependencies.cpp:(.text+0x8d): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
CMakeFiles/base_map_parameters.dir/base_map_parameters.cpp.o: In function test_load_file_parameter()': base_map_parameters.cpp:(.text+0x71): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
[ 87%] [ 87%] CMakeFiles/base_migration_dropping_and_new.dir/base_migration_dropping_and_new.cpp.o: In function test_migration()': base_migration_dropping_and_new.cpp:(.text+0x1b3): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
Built target base_map_parameters
Built target base_migration_multiple_dependencies
[ 87%] Built target base_migration_dropping_and_new
Scanning dependencies of target base_migration_new_buggy
Scanning dependencies of target base_migration_type_conversion
Scanning dependencies of target base_parameter_map
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/base_migration_new_buggy.dir/base_migration_new_buggy.cpp.o
[ 87%] [ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/base_parameter_map.dir/base_parameter_map.cpp.o
Building CXX object examples/undocumented/libshogun/CMakeFiles/base_migration_type_conversion.dir/base_migration_type_conversion.cpp.o
Linking CXX executable base_parameter_map
Linking CXX executable base_migration_new_buggy
Linking CXX executable base_migration_type_conversion
[ 87%] Built target base_parameter_map
CMakeFiles/base_migration_new_buggy.dir/base_migration_new_buggy.cpp.o: In function test()': base_migration_new_buggy.cpp:(.text+0x54): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
[ 87%] Scanning dependencies of target basic_minimal
Built target base_migration_new_buggy
CMakeFiles/base_migration_type_conversion.dir/base_migration_type_conversion.cpp.o: In function test_migration()': base_migration_type_conversion.cpp:(.text+0x7ec): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
Scanning dependencies of target classifier_featureblocklogisticregression
[ 87%] Built target base_migration_type_conversion
[ 87%] Scanning dependencies of target classifier_gaussian_process_binary_classification
Building CXX object examples/undocumented/libshogun/CMakeFiles/basic_minimal.dir/basic_minimal.cpp.o
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_featureblocklogisticregression.dir/classifier_featureblocklogisticregression.cpp.o
Linking CXX executable basic_minimal
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_gaussian_process_binary_classification.dir/classifier_gaussian_process_binary_classification.cpp.o
Linking CXX executable classifier_featureblocklogisticregression
Linking CXX executable classifier_gaussian_process_binary_classification
[ 87%] Built target basic_minimal
Scanning dependencies of target classifier_gaussiannaivebayes
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_gaussiannaivebayes.dir/classifier_gaussiannaivebayes.cpp.o
[ 87%] Built target classifier_featureblocklogisticregression
Scanning dependencies of target classifier_knn
[ 87%] [ 87%] Built target classifier_gaussian_process_binary_classification
Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_knn.dir/classifier_knn.cpp.o
Scanning dependencies of target classifier_lda
Linking CXX executable classifier_gaussiannaivebayes
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_lda.dir/classifier_lda.cpp.o
Linking CXX executable classifier_knn
Linking CXX executable classifier_lda
[ 87%] Built target classifier_gaussiannaivebayes
Scanning dependencies of target classifier_libsvm
[ 87%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_libsvm.dir/classifier_libsvm.cpp.o
[ 87%] Built target classifier_knn
Scanning dependencies of target classifier_libsvm_probabilities
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_libsvm_probabilities.dir/classifier_libsvm_probabilities.cpp.o
[ 88%] Built target classifier_lda
Scanning dependencies of target classifier_minimal_svm
Linking CXX executable classifier_libsvm
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_minimal_svm.dir/classifier_minimal_svm.cpp.o
Linking CXX executable classifier_libsvm_probabilities
Linking CXX executable classifier_minimal_svm
[ 88%] Built target classifier_libsvm
Scanning dependencies of target classifier_mkl_svmlight_modelselection_bug
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_mkl_svmlight_modelselection_bug.dir/classifier_mkl_svmlight_modelselection_bug.cpp.o
[ 88%] Built target classifier_libsvm_probabilities
Scanning dependencies of target classifier_mklmulticlass
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_mklmulticlass.dir/classifier_mklmulticlass.cpp.o
[ 88%] Built target classifier_minimal_svm
Scanning dependencies of target classifier_multiclass_ecoc
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_multiclass_ecoc.dir/classifier_multiclass_ecoc.cpp.o
Linking CXX executable classifier_mkl_svmlight_modelselection_bug
Linking CXX executable classifier_mklmulticlass
Linking CXX executable classifier_multiclass_ecoc
[ 88%] Built target classifier_mkl_svmlight_modelselection_bug
Scanning dependencies of target classifier_multiclass_ecoc_discriminant
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_multiclass_ecoc_discriminant.dir/classifier_multiclass_ecoc_discriminant.cpp.o
[ 88%] Built target classifier_mklmulticlass
Scanning dependencies of target classifier_multiclass_ecoc_random
[ 88%] Built target classifier_multiclass_ecoc
Scanning dependencies of target classifier_multiclass_prob_heuristics
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_multiclass_ecoc_random.dir/classifier_multiclass_ecoc_random.cpp.o
[ 88%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_multiclass_prob_heuristics.dir/classifier_multiclass_prob_heuristics.cpp.o
Linking CXX executable classifier_multiclass_ecoc_discriminant
Linking CXX executable classifier_multiclass_ecoc_random
Linking CXX executable classifier_multiclass_prob_heuristics
[ 88%] Built target classifier_multiclass_ecoc_discriminant
Scanning dependencies of target classifier_multiclasslibsvm
[ 89%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_multiclasslibsvm.dir/classifier_multiclasslibsvm.cpp.o
[ 89%] Built target classifier_multiclass_prob_heuristics
Scanning dependencies of target classifier_multiclasslinearmachine
[ 89%] Built target classifier_multiclass_ecoc_random
Scanning dependencies of target classifier_qda
[ 89%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_multiclasslinearmachine.dir/classifier_multiclasslinearmachine.cpp.o
[ 89%] Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_qda.dir/classifier_qda.cpp.o
Linking CXX executable classifier_multiclasslibsvm
Linking CXX executable classifier_multiclasslinearmachine
Linking CXX executable classifier_qda
[ 89%] Built target classifier_multiclasslibsvm
Scanning dependencies of target classifier_svmlight_string_features_precomputed_kernel
[ 89%] [ 89%] Built target classifier_multiclasslinearmachine
[ 89%] Built target classifier_qda
Building CXX object examples/undocumented/libshogun/CMakeFiles/classifier_svmlight_string_features_precomputed_kernel.dir/classifier_svmlight_string_features_precomputed_kernel.cpp.o
Scanning dependencies of target clustering_kmeans
Scanning dependencies of target converter_diffusionmaps
[ 89%] Building CXX object examples/undocumented/libshogun/CMakeFiles/clustering_kmeans.dir/clustering_kmeans.cpp.o
[ 89%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_diffusionmaps.dir/converter_diffusionmaps.cpp.o
Linking CXX executable classifier_svmlight_string_features_precomputed_kernel
Linking CXX executable clustering_kmeans
Linking CXX executable converter_diffusionmaps
[ 89%] Built target classifier_svmlight_string_features_precomputed_kernel
Scanning dependencies of target converter_factoranalysis
[ 89%] [ 89%] Built target clustering_kmeans
Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_factoranalysis.dir/converter_factoranalysis.cpp.o
Scanning dependencies of target converter_hessianlocallylinearembedding
[ 89%] Built target converter_diffusionmaps
Scanning dependencies of target converter_isomap
[ 89%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_hessianlocallylinearembedding.dir/converter_hessianlocallylinearembedding.cpp.o
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_isomap.dir/converter_isomap.cpp.o
Linking CXX executable converter_factoranalysis
Linking CXX executable converter_hessianlocallylinearembedding
Linking CXX executable converter_isomap
[ 90%] Built target converter_factoranalysis
Scanning dependencies of target converter_jade_bss
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_jade_bss.dir/converter_jade_bss.cpp.o
[ 90%] Built target converter_hessianlocallylinearembedding
Scanning dependencies of target converter_kernellocallylinearembedding
[ 90%] Built target converter_isomap
Scanning dependencies of target converter_laplacianeigenmaps
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_kernellocallylinearembedding.dir/converter_kernellocallylinearembedding.cpp.o
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_laplacianeigenmaps.dir/converter_laplacianeigenmaps.cpp.o
Linking CXX executable converter_kernellocallylinearembedding
Linking CXX executable converter_laplacianeigenmaps
Linking CXX executable converter_jade_bss
[ 90%] Built target converter_laplacianeigenmaps
[ 90%] Scanning dependencies of target converter_linearlocaltangentspacealignment
Built target converter_kernellocallylinearembedding
Scanning dependencies of target converter_localitypreservingprojections
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_linearlocaltangentspacealignment.dir/converter_linearlocaltangentspacealignment.cpp.o
[ 90%] [ 90%] Built target converter_jade_bss
Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_localitypreservingprojections.dir/converter_localitypreservingprojections.cpp.o
Scanning dependencies of target converter_locallylinearembedding
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_locallylinearembedding.dir/converter_locallylinearembedding.cpp.o
Linking CXX executable converter_linearlocaltangentspacealignment
Linking CXX executable converter_localitypreservingprojections
Linking CXX executable converter_locallylinearembedding
[ 90%] Built target converter_linearlocaltangentspacealignment
Scanning dependencies of target converter_localtangentspacealignment
[ 90%] Built target converter_localitypreservingprojections
Scanning dependencies of target converter_multidimensionalscaling
[ 90%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_localtangentspacealignment.dir/converter_localtangentspacealignment.cpp.o
[ 90%] Built target converter_locallylinearembedding
[ 91%] Scanning dependencies of target converter_neighborhoodpreservingembedding
Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_multidimensionalscaling.dir/converter_multidimensionalscaling.cpp.o
[ 91%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_neighborhoodpreservingembedding.dir/converter_neighborhoodpreservingembedding.cpp.o
Linking CXX executable converter_localtangentspacealignment
Linking CXX executable converter_multidimensionalscaling
Linking CXX executable converter_neighborhoodpreservingembedding
[ 91%] Built target converter_localtangentspacealignment
Scanning dependencies of target converter_stochasticproximityembedding
[ 91%] Built target converter_multidimensionalscaling
Scanning dependencies of target evaluation_cross_validation_classification
[ 91%] Building CXX object examples/undocumented/libshogun/CMakeFiles/converter_stochasticproximityembedding.dir/converter_stochasticproximityembedding.cpp.o
[ 91%] Built target converter_neighborhoodpreservingembedding
[ 91%] Building CXX object examples/undocumented/libshogun/CMakeFiles/evaluation_cross_validation_classification.dir/evaluation_cross_validation_classification.cpp.o
Scanning dependencies of target evaluation_cross_validation_locked_comparison
[ 91%] Building CXX object examples/undocumented/libshogun/CMakeFiles/evaluation_cross_validation_locked_comparison.dir/evaluation_cross_validation_locked_comparison.cpp.o
Linking CXX executable converter_stochasticproximityembedding
Linking CXX executable evaluation_cross_validation_classification
Linking CXX executable evaluation_cross_validation_locked_comparison
[ 91%] Built target converter_stochasticproximityembedding
Scanning dependencies of target evaluation_cross_validation_mkl_weight_storage
[ 92%] [ 92%] Building CXX object examples/undocumented/libshogun/CMakeFiles/evaluation_cross_validation_mkl_weight_storage.dir/evaluation_cross_validation_mkl_weight_storage.cpp.o
Built target evaluation_cross_validation_classification
Scanning dependencies of target evaluation_cross_validation_multiclass
[ 92%] Built target evaluation_cross_validation_locked_comparison
[ 92%] Scanning dependencies of target evaluation_cross_validation_multiclass_mkl
Building CXX object examples/undocumented/libshogun/CMakeFiles/evaluation_cross_validation_multiclass.dir/evaluation_cross_validation_multiclass.cpp.o
[ 92%] Building CXX object examples/undocumented/libshogun/CMakeFiles/evaluation_cross_validation_multiclass_mkl.dir/evaluation_cross_validation_multiclass_mkl.cpp.o
Linking CXX executable evaluation_cross_validation_mkl_weight_storage
Linking CXX executable evaluation_cross_validation_multiclass
Linking CXX executable evaluation_cross_validation_multiclass_mkl
[ 92%] Built target evaluation_cross_validation_mkl_weight_storage
Scanning dependencies of target evaluation_cross_validation_regression
[ 92%] Built target evaluation_cross_validation_multiclass
[ 92%] Scanning dependencies of target features_copy_subset_simple_features
Building CXX object examples/undocumented/libshogun/CMakeFiles/evaluation_cross_validation_regression.dir/evaluation_cross_validation_regression.cpp.o
[ 92%] Building CXX object examples/undocumented/libshogun/CMakeFiles/features_copy_subset_simple_features.dir/features_copy_subset_simple_features.cpp.o
[ 92%] Built target evaluation_cross_validation_multiclass_mkl
Scanning dependencies of target features_copy_subset_sparse_features
[ 92%] Building CXX object examples/undocumented/libshogun/CMakeFiles/features_copy_subset_sparse_features.dir/features_copy_subset_sparse_features.cpp.o
Linking CXX executable evaluation_cross_validation_regression
Linking CXX executable features_copy_subset_simple_features
Linking CXX executable features_copy_subset_sparse_features
[ 92%] Built target evaluation_cross_validation_regression
Scanning dependencies of target features_dense_real_modular
[ 92%] Built target features_copy_subset_simple_features
Scanning dependencies of target features_subset_labels
[ 92%] Building CXX object examples/undocumented/libshogun/CMakeFiles/features_dense_real_modular.dir/features_dense_real_modular.cpp.o
[ 92%] Building CXX object examples/undocumented/libshogun/CMakeFiles/features_subset_labels.dir/features_subset_labels.cpp.o
[ 92%] Built target features_copy_subset_sparse_features
Scanning dependencies of target features_subset_simple_features
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/features_subset_simple_features.dir/features_subset_simple_features.cpp.o
Linking CXX executable features_subset_labels
Linking CXX executable features_dense_real_modular
Linking CXX executable features_subset_simple_features
[ 93%] [ 93%] Built target features_subset_labels
Built target features_dense_real_modular
Scanning dependencies of target io_libsvm_multilabel
Scanning dependencies of target features_subset_stack
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/io_libsvm_multilabel.dir/io_libsvm_multilabel.cpp.o
[ 93%] [ 93%] Built target features_subset_simple_features
Building CXX object examples/undocumented/libshogun/CMakeFiles/features_subset_stack.dir/features_subset_stack.cpp.o
Scanning dependencies of target io_linereader
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/io_linereader.dir/io_linereader.cpp.o
Linking CXX executable io_libsvm_multilabel
Linking CXX executable features_subset_stack
Linking CXX executable io_linereader
[ 93%] Built target io_libsvm_multilabel
Scanning dependencies of target kernel_custom
[ 93%] Built target features_subset_stack
Scanning dependencies of target kernel_custom_index
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/kernel_custom.dir/kernel_custom.cpp.o
[ 93%] Built target io_linereader
Scanning dependencies of target kernel_gaussian
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/kernel_custom_index.dir/kernel_custom_index.cpp.o
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/kernel_gaussian.dir/kernel_gaussian.cpp.o
Linking CXX executable kernel_custom
Linking CXX executable kernel_custom_index
Linking CXX executable kernel_gaussian
[ 93%] Built target kernel_custom
Scanning dependencies of target kernel_machine_train_locked
[ 93%] Built target kernel_custom_index
[ 93%] Built target kernel_gaussian
Scanning dependencies of target kernel_revlin
Scanning dependencies of target labels_binary_fit_sigmoid
[ 93%] Building CXX object examples/undocumented/libshogun/CMakeFiles/kernel_machine_train_locked.dir/kernel_machine_train_locked.cpp.o
[ 94%] [ 94%] Building CXX object examples/undocumented/libshogun/CMakeFiles/kernel_revlin.dir/kernel_revlin.cpp.o
Building CXX object examples/undocumented/libshogun/CMakeFiles/labels_binary_fit_sigmoid.dir/labels_binary_fit_sigmoid.cpp.o
Linking CXX executable kernel_machine_train_locked
Linking CXX executable kernel_revlin
Linking CXX executable labels_binary_fit_sigmoid
[ 94%] Built target kernel_machine_train_locked
Scanning dependencies of target library_circularbuffer
[ 94%] [ 94%] Built target kernel_revlin
Built target labels_binary_fit_sigmoid
Scanning dependencies of target library_gc_array
Scanning dependencies of target library_dyn_int
[ 94%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_circularbuffer.dir/library_circularbuffer.cpp.o
[ 94%] [ 94%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_gc_array.dir/library_gc_array.cpp.o
Building CXX object examples/undocumented/libshogun/CMakeFiles/library_dyn_int.dir/library_dyn_int.cpp.o
Linking CXX executable library_circularbuffer
Linking CXX executable library_dyn_int
Linking CXX executable library_gc_array
[ 94%] Built target library_circularbuffer
Scanning dependencies of target library_hash
[ 94%] [ 94%] Built target library_dyn_int
Building CXX object examples/undocumented/libshogun/CMakeFiles/library_hash.dir/library_hash.cpp.o
Scanning dependencies of target library_hdf5
[ 94%] Built target library_gc_array
Scanning dependencies of target library_indirect_object
[ 94%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_hdf5.dir/library_hdf5.cpp.o
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_indirect_object.dir/library_indirect_object.cpp.o
Linking CXX executable library_hash
Linking CXX executable library_indirect_object
Linking CXX executable library_hdf5
[ 95%] Built target library_hash
Scanning dependencies of target library_map
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_map.dir/library_map.cpp.o
[ 95%] Built target library_hdf5
Scanning dependencies of target library_mldatahdf5
[ 95%] Built target library_indirect_object
Scanning dependencies of target library_serialization
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_mldatahdf5.dir/library_mldatahdf5.cpp.o
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_serialization.dir/library_serialization.cpp.o
Linking CXX executable library_map
Linking CXX executable library_mldatahdf5
Linking CXX executable library_serialization
[ 95%] [ 95%] Built target library_map
Built target library_mldatahdf5
Scanning dependencies of target library_set
Scanning dependencies of target mathematics_confidence_intervals
[ 95%] [ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/library_set.dir/library_set.cpp.o
Building CXX object examples/undocumented/libshogun/CMakeFiles/mathematics_confidence_intervals.dir/mathematics_confidence_intervals.cpp.o
[ 95%] Built target library_serialization
Scanning dependencies of target mathematics_lapack
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/mathematics_lapack.dir/mathematics_lapack.cpp.o
Linking CXX executable library_set
Linking CXX executable mathematics_confidence_intervals
Linking CXX executable mathematics_lapack
[ 95%] Built target library_set
Scanning dependencies of target modelselection_apply_parameter_tree
[ 95%] Built target mathematics_confidence_intervals
Scanning dependencies of target modelselection_combined_kernel_sub_parameters
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_apply_parameter_tree.dir/modelselection_apply_parameter_tree.cpp.o
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_combined_kernel_sub_parameters.dir/modelselection_combined_kernel_sub_parameters.cpp.o
[ 95%] Built target mathematics_lapack
Scanning dependencies of target modelselection_grid_search_kernel
[ 95%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_grid_search_kernel.dir/modelselection_grid_search_kernel.cpp.o
Linking CXX executable modelselection_apply_parameter_tree
Linking CXX executable modelselection_combined_kernel_sub_parameters
Linking CXX executable modelselection_grid_search_kernel
[ 95%] Built target modelselection_apply_parameter_tree
Scanning dependencies of target modelselection_grid_search_linear
[ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_grid_search_linear.dir/modelselection_grid_search_linear.cpp.o
[ 96%] Built target modelselection_combined_kernel_sub_parameters
Scanning dependencies of target modelselection_grid_search_mkl
[ 96%] [ 96%] Built target modelselection_grid_search_kernel
Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_grid_search_mkl.dir/modelselection_grid_search_mkl.cpp.o
Scanning dependencies of target modelselection_grid_search_multiclass_svm
[ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_grid_search_multiclass_svm.dir/modelselection_grid_search_multiclass_svm.cpp.o
Linking CXX executable modelselection_grid_search_linear
Linking CXX executable modelselection_grid_search_mkl
Linking CXX executable modelselection_grid_search_multiclass_svm
[ 96%] Built target modelselection_grid_search_linear
Scanning dependencies of target modelselection_grid_search_string_kernel
[ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_grid_search_string_kernel.dir/modelselection_grid_search_string_kernel.cpp.o
[ 96%] Built target modelselection_grid_search_mkl
Scanning dependencies of target modelselection_model_selection_parameters_test
[ 96%] [ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_model_selection_parameters_test.dir/modelselection_model_selection_parameters_test.cpp.o
Built target modelselection_grid_search_multiclass_svm
Scanning dependencies of target modelselection_parameter_combination_test
[ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_parameter_combination_test.dir/modelselection_parameter_combination_test.cpp.o
Linking CXX executable modelselection_grid_search_string_kernel
Linking CXX executable modelselection_model_selection_parameters_test
Linking CXX executable modelselection_parameter_combination_test
[ 96%] Built target modelselection_grid_search_string_kernel
Scanning dependencies of target modelselection_parameter_tree
[ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/modelselection_parameter_tree.dir/modelselection_parameter_tree.cpp.o
[ 96%] Built target modelselection_model_selection_parameters_test
Scanning dependencies of target neuralnets_basic
[ 96%] Building CXX object examples/undocumented/libshogun/CMakeFiles/neuralnets_basic.dir/neuralnets_basic.cpp.o
[ 96%] Built target modelselection_parameter_combination_test
Scanning dependencies of target neuralnets_convolutional
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/neuralnets_convolutional.dir/neuralnets_convolutional.cpp.o
Linking CXX executable modelselection_parameter_tree
Linking CXX executable neuralnets_basic
Linking CXX executable neuralnets_convolutional
[ 97%] Built target modelselection_parameter_tree
Scanning dependencies of target neuralnets_deep_autoencoder
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/neuralnets_deep_autoencoder.dir/neuralnets_deep_autoencoder.cpp.o
[ 97%] Built target neuralnets_basic
Scanning dependencies of target neuralnets_deep_belief_network
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/neuralnets_deep_belief_network.dir/neuralnets_deep_belief_network.cpp.o
[ 97%] Built target neuralnets_convolutional
Scanning dependencies of target parameter_iterate_float64
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/parameter_iterate_float64.dir/parameter_iterate_float64.cpp.o
Linking CXX executable neuralnets_deep_autoencoder
Linking CXX executable neuralnets_deep_belief_network
Linking CXX executable parameter_iterate_float64
[ 97%] Built target neuralnets_deep_autoencoder
Scanning dependencies of target parameter_iterate_sgobject
[ 97%] [ 97%] Built target neuralnets_deep_belief_network
Building CXX object examples/undocumented/libshogun/CMakeFiles/parameter_iterate_sgobject.dir/parameter_iterate_sgobject.cpp.o
Scanning dependencies of target parameter_modsel_parameters
[ 97%] Built target parameter_iterate_float64
Scanning dependencies of target parameter_set_from_parameters
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/parameter_modsel_parameters.dir/parameter_modsel_parameters.cpp.o
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/parameter_set_from_parameters.dir/parameter_set_from_parameters.cpp.o
Linking CXX executable parameter_iterate_sgobject
Linking CXX executable parameter_modsel_parameters
Linking CXX executable parameter_set_from_parameters
[ 97%] Built target parameter_iterate_sgobject
Scanning dependencies of target regression_gaussian_process_ard
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_ard.dir/regression_gaussian_process_ard.cpp.o
[ 97%] Built target parameter_modsel_parameters
Scanning dependencies of target regression_gaussian_process_fitc
[ 97%] Built target parameter_set_from_parameters
Scanning dependencies of target regression_gaussian_process_gaussian
Linking CXX executable regression_gaussian_process_ard
[ 97%] Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_fitc.dir/regression_gaussian_process_fitc.cpp.o
[ 97%] Linking CXX executable regression_gaussian_process_fitc
Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_gaussian.dir/regression_gaussian_process_gaussian.cpp.o
Linking CXX executable regression_gaussian_process_gaussian
[ 97%] Built target regression_gaussian_process_ard
Scanning dependencies of target regression_gaussian_process_laplace
[ 98%] [ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_laplace.dir/regression_gaussian_process_laplace.cpp.o
Built target regression_gaussian_process_fitc
Scanning dependencies of target regression_gaussian_process_product
Linking CXX executable regression_gaussian_process_laplace
[ 98%] Built target regression_gaussian_process_gaussian
Scanning dependencies of target regression_gaussian_process_simple_exact
[ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_product.dir/regression_gaussian_process_product.cpp.o
[ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_simple_exact.dir/regression_gaussian_process_simple_exact.cpp.o
[ 98%] Built target regression_gaussian_process_laplace
Scanning dependencies of target regression_gaussian_process_sum
[ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_gaussian_process_sum.dir/regression_gaussian_process_sum.cpp.o
Linking CXX executable regression_gaussian_process_product
Linking CXX executable regression_gaussian_process_simple_exact
Linking CXX executable regression_gaussian_process_sum
[ 98%] Built target regression_gaussian_process_product
[ 98%] Built target regression_gaussian_process_simple_exact
Scanning dependencies of target regression_libsvr
Scanning dependencies of target serialization_basic_tests
[ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/serialization_basic_tests.dir/serialization_basic_tests.cpp.o
[ 98%] [ 98%] Built target regression_gaussian_process_sum
Building CXX object examples/undocumented/libshogun/CMakeFiles/regression_libsvr.dir/regression_libsvr.cpp.o
Scanning dependencies of target serialization_multiclass_labels
[ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/serialization_multiclass_labels.dir/serialization_multiclass_labels.cpp.o
Linking CXX executable serialization_basic_tests
Linking CXX executable regression_libsvr
Linking CXX executable serialization_multiclass_labels
CMakeFiles/serialization_basic_tests.dir/serialization_basic_tests.cpp.o: In function test_test_class_serial()': serialization_basic_tests.cpp:(.text+0x90): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
[ 98%] Built target serialization_basic_tests
Scanning dependencies of target so_factorgraph
[ 98%] Built target regression_libsvr
Scanning dependencies of target so_fg_multilabel
[ 98%] Building CXX object examples/undocumented/libshogun/CMakeFiles/so_factorgraph.dir/so_factorgraph.cpp.o
[ 98%] Built target serialization_multiclass_labels
Scanning dependencies of target so_multiclass_BMRM
[ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/so_fg_multilabel.dir/so_fg_multilabel.cpp.o
[ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/so_multiclass_BMRM.dir/so_multiclass_BMRM.cpp.o
Linking CXX executable so_factorgraph
Linking CXX executable so_fg_multilabel
Linking CXX executable so_multiclass_BMRM
[ 99%] Built target so_factorgraph
Scanning dependencies of target splitting_standard_crossvalidation
[ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/splitting_standard_crossvalidation.dir/splitting_standard_crossvalidation.cpp.o
[ 99%] [ 99%] Built target so_fg_multilabel
Built target so_multiclass_BMRM
Scanning dependencies of target splitting_stratified_crossvalidation
Scanning dependencies of target statistics
Linking CXX executable splitting_standard_crossvalidation
[ 99%] [ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/statistics.dir/statistics.cpp.o
Building CXX object examples/undocumented/libshogun/CMakeFiles/splitting_stratified_crossvalidation.dir/splitting_stratified_crossvalidation.cpp.o
Linking CXX executable statistics
Linking CXX executable splitting_stratified_crossvalidation
[ 99%] Built target splitting_standard_crossvalidation
Scanning dependencies of target statistics_hsic
[ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/statistics_hsic.dir/statistics_hsic.cpp.o
[ 99%] Built target splitting_stratified_crossvalidation
Scanning dependencies of target statistics_linear_time_mmd
[ 99%] Built target statistics
Scanning dependencies of target statistics_mmd_kernel_selection
[ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/statistics_linear_time_mmd.dir/statistics_linear_time_mmd.cpp.o
[ 99%] Building CXX object examples/undocumented/libshogun/CMakeFiles/statistics_mmd_kernel_selection.dir/statistics_mmd_kernel_selection.cpp.o
Linking CXX executable statistics_hsic
Linking CXX executable statistics_linear_time_mmd
Linking CXX executable statistics_mmd_kernel_selection
[ 99%] Built target statistics_hsic
Scanning dependencies of target statistics_quadratic_time_mmd
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/statistics_quadratic_time_mmd.dir/statistics_quadratic_time_mmd.cpp.o
[100%] Built target statistics_mmd_kernel_selection
Scanning dependencies of target streaming_from_dense
Linking CXX executable statistics_quadratic_time_mmd
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/streaming_from_dense.dir/streaming_from_dense.cpp.o
[100%] Built target statistics_linear_time_mmd
Scanning dependencies of target streaming_onlineliblinear_dense
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/streaming_onlineliblinear_dense.dir/streaming_onlineliblinear_dense.cpp.o
Linking CXX executable streaming_from_dense
Linking CXX executable streaming_onlineliblinear_dense
[100%] Built target statistics_quadratic_time_mmd
Scanning dependencies of target streaming_onlineliblinear_sparse
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/streaming_onlineliblinear_sparse.dir/streaming_onlineliblinear_sparse.cpp.o
[100%] Built target streaming_from_dense
Scanning dependencies of target transfer_multitaskleastsquaresregression
Linking CXX executable streaming_onlineliblinear_sparse
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/transfer_multitaskleastsquaresregression.dir/transfer_multitaskleastsquaresregression.cpp.o
[100%] Built target streaming_onlineliblinear_dense
Scanning dependencies of target transfer_multitasklogisticregression
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/transfer_multitasklogisticregression.dir/transfer_multitasklogisticregression.cpp.o
Linking CXX executable transfer_multitaskleastsquaresregression
Linking CXX executable transfer_multitasklogisticregression
CMakeFiles/streaming_onlineliblinear_sparse.dir/streaming_onlineliblinear_sparse.cpp.o: In function main': streaming_onlineliblinear_sparse.cpp:(.text.startup+0x8a): warning: the use ofmktemp' is dangerous, better use mkstemp' ormkdtemp'
[100%] Built target streaming_onlineliblinear_sparse
Scanning dependencies of target variational_approx_example
[100%] Building CXX object examples/undocumented/libshogun/CMakeFiles/variational_approx_example.dir/variational_approx_example.cpp.o
[100%] Built target transfer_multitaskleastsquaresregression
[100%] Built target transfer_multitasklogisticregression
Linking CXX executable variational_approx_example
[100%] Built target variational_approx_example
[100%] Built target r_doxy2swig
[100%] Swig source
/home/bee/Downloads/shogun/src/shogun/lib/List.h:71: Warning 314: 'next' is a R keyword, renaming to '_next'
/home/bee/Downloads/shogun/src/shogun/structure/GraphCut.h:51: Warning 314: 'next' is a R keyword, renaming to '_next'
/home/bee/Downloads/shogun/src/shogun/structure/GraphCut.h:72: Warning 314: 'next' is a R keyword, renaming to '_next'
/home/bee/Downloads/shogun/src/shogun/structure/GraphCut.h:93: Warning 314: 'next' is a R keyword, renaming to 'next'
constantWrapper : int STRING_LEN = 256
constantWrapper : char *STRING_LEN_STR = 256
constantWrapper : char CHAR_CONT_BEGIN = (
constantWrapper : char CHAR_CONT_END = )
constantWrapper : char CHAR_ITEM_BEGIN = {
constantWrapper : char CHAR_ITEM_END = }
constantWrapper : char CHAR_SGSERIAL_BEGIN = [
constantWrapper : char CHAR_SGSERIAL_END = ]
constantWrapper : char CHAR_STRING_BEGIN = [
constantWrapper : char CHAR_STRING_END = ]
constantWrapper : char CHAR_SPARSE_BEGIN = (
constantWrapper : char CHAR_SPARSE_END = )
constantWrapper : char CHAR_TYPE_END = \n
constantWrapper : char *STR_SGSERIAL_NULL = null
constantWrapper : char *STR_IS_SGSERIALIZABLE = is_sgserializable
constantWrapper : char *STR_IS_SPARSE = is_sparse
constantWrapper : char *STR_IS_CONT = is_container
constantWrapper : char *STR_IS_NULL = is_null
constantWrapper : char *STR_INSTANCE_NAME = instance_name
constantWrapper : char *STR_GENERIC_NAME = generic_name
constantWrapper : char *STR_CTYPE_NAME = container_type
constantWrapper : char *STR_LENGTH_X = length_x
constantWrapper : char *STR_LENGTH_Y = length_y
constantWrapper : char *STR_GROUP_PREFIX = $
constantWrapper : char *STR_SPARSE_FPTR = features_ptr
constantWrapper : char *STR_SPARSEENTRY_FINDEX = feat_index
constantWrapper : char *STR_SPARSEENTRY_ENTRY = entry
constantWrapper : char *STR_TRUE = true
constantWrapper : char *STR_FALSE = false
constantWrapper : char *STR_ITEM = i
constantWrapper : char *STR_STRING = s
constantWrapper : char *STR_SPARSE = r
constantWrapper : char *STR_PROP_TYPE = type
constantWrapper : char *STR_PROP_IS_NULL = is_null
constantWrapper : char *STR_PROP_INSTANCE_NAME = instance_name
constantWrapper : char *STR_PROP_GENERIC_NAME = generic_name
constantWrapper : char *STR_PROP_FEATINDEX = feat_index
constantWrapper : double M_PI = 3.14159265358979323846
constantWrapper : int RNG_SEED_SIZE = 256
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:696: Warning 509: Overloaded method shogun::CMath::random(int64_t,int64_t) effectively ignored,
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:691: Warning 509: as it is shadowed by shogun::CMath::random(uint64_t,uint64_t).
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:691: Warning 509: Overloaded method shogun::CMath::random(uint64_t,uint64_t) effectively ignored,
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:696: Warning 509: as it is shadowed by shogun::CMath::random(int64_t,int64_t).
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:706: Warning 509: Overloaded method shogun::CMath::random(int32_t,int32_t) effectively ignored,
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:701: Warning 509: as it is shadowed by shogun::CMath::random(uint32_t,uint32_t).
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:701: Warning 509: Overloaded method shogun::CMath::random(uint32_t,uint32_t) effectively ignored,
/home/bee/Downloads/shogun/src/shogun/mathematics/Math.h:706: Warning 509: as it is shadowed by shogun::CMath::random(int32_t,int32_t).
constantWrapper : int DenseLabels_REJECTION_LABEL = shogun::CDenseLabels::REJECTION_LABEL
constantWrapper : double DEF_PRECISION = 1E-14
constantWrapper : int INFINITE_D = 1000000000
Scanning dependencies of target r_modular
[100%] [100%] Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/sg_print_functions.cpp.o
Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/modshogunR_wrap.cxx.o
Linking CXX shared module modshogun.so
Generating modshogun.RData
f="modshogun.R"; fdata="modshogun.RData"; source ( f ) ; save ( list=ls ( all=TRUE ) ,file=fdata, compress=TRUE ) ; q ( save="no" )
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
Calls: source -> file
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
cannot open file 'modshogun.R': No such file or directory
Execution halted
make[2]: *
* [src/interfaces/r_modular/modshogun.so] Error 1
make[1]: *** [src/interfaces/r_modular/CMakeFiles/r_modular.dir/all] Error 2
make: *** [all] Error 2
bee@localhost:~/Downloads/shogun/build$

@karlnapf
Copy link
Member

@beew would you mind not putting such long outputs here directly? You can paste them at https://gist.github.com/

@matthuska thanks for helping!

@matthuska
Copy link
Contributor

I don't see anything obvious in the build output. Can you give me the parameters you used when building hdf5? I'll build a local copy as well and see if I can reproduce your problem.

Also, what version of swig are you using?

@beew
Copy link
Author

beew commented Dec 23, 2014

Hi, It is hdf5-1.8.12 The configure line was

./configure --prefix=$HOME/opt/hdf5 --with-pthread --enable-unsupported --enable-shared --enable-production=yes --enable-parallel=yes --enable-largefile=yes --with-default-api-version=v18"

I copied these options from FENICS' dorsal install script but disabled parallel.

Swig version 2.0.11-1ubuntu2 from the Ubuntu repository

@beew
Copy link
Author

beew commented Dec 24, 2014

I tried with the latest git version today, Karl has added a patch to disable hdf5. I was able to do that and shogun did build successfully without hdf5, but R-modular still failed with the same errors. So they are apparently not hdf5 related.

I currently do have shogun R-Static installed, do I need to remove it first?

@karlnapf
Copy link
Member

@beew btw check the latest patch where hdf5 can be disabled, #2656 #2658

And no, R-static does not have to be removed. But it is deprecated anyways.

@beew
Copy link
Author

beew commented Dec 24, 2014

Hi, tried the latest with HDF5 turned OFF but still get errors

Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/modshogunR_wrap.cxx.o
Building CXX object src/interfaces/r_modular/CMakeFiles/r_modular.dir/sg_print_functions.cpp.o
Linking CXX shared module modshogun.so
Generating modshogun.RData
f="modshogun.R"; fdata="modshogun.RData"; source ( f ) ; save ( list=ls ( all=TRUE ) ,file=fdata, compress=TRUE ) ; q ( save="no" )
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
Calls: source -> file
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
cannot open file 'modshogun.R': No such file or directory
Execution halted
make[2]: *** [src/interfaces/r_modular/modshogun.so] Error 1
make[1]: *** [src/interfaces/r_modular/CMakeFiles/r_modular.dir/all] Error 2
make: *** [all] Error 2

But I found modshogun.R in ~/Downloads/shogun/build/src/interfaces/r_modular and it is 7.6 Mb

@karlnapf
Copy link
Member

Could you try to copy the modshogun.R to the place where cmake is looking for it?
And double check any file system issues (we every now and then get reports of problems due to insufficient rights and fill file systems here)

@beew
Copy link
Author

beew commented Dec 24, 2014

It is not clear from the error where cmake tries to look for it.

@karlnapf
Copy link
Member

I just built r-modular locally and it went fine, my modshogun.R is in shogun/build/src/interfaces/r_modular/modshogun.R and is 7.3MB.
So something is weird

@besser82
Copy link
Member

Works for me either locally and on Fedora's builders…

can you please give us the output of

ls -lah ~/Downloads/shogun/build/src/interfaces/

I suspect issues with permissions, UMASK and/or Type of Filesystem…

@beew
Copy link
Author

beew commented Dec 24, 2014

Hi, here are the outputs

total 12K
drwxrwxr-x 3 bee bee 4.0K Dec 24 13:07 .
drwxrwxr-x 4 bee bee 4.0K Dec 24 13:07 ..
drwxrwxr-x 4 bee bee 4.0K Dec 24 13:28 r_modular

@beew
Copy link
Author

beew commented Dec 25, 2014

Hi,

I figured it out! I have set my default R work directory to be ~/R in my .Rprofile. I think the installation was looking for path relative to the default R work directory, so that would be ~/R/Downloads/shogun.. which doesn't exist.

After commenting out setwd('~/R') in .Rprofile, R-modular interface builds successfully.

Thanks everyone for helping.

@karlnapf
Copy link
Member

Great, @beew !
Maybe we could add this to one of the Readmes. Feel free to send a little patch.
Let us know how things go from now!

@dpo
Copy link

dpo commented Dec 26, 2014

Any idea where #2395 might come from? I'm still seeing that on Mavericks.

@beew
Copy link
Author

beew commented Jan 31, 2016

Maybe we could add this to one of the Readmes. Feel free to send a little patch.
Let us know how things go from now!

Getting back a little late since I have not been using shogun's R interface

I don't know how to fix the codes or make a patch but the problem I think is in

shogun/src/interfaces/r_modular/CMakeLists

More precisely these lines

ADD_CUSTOM_COMMAND(TARGET r_modular
    POST_BUILD
    COMMAND echo 'f="modshogun.R" \; fdata="modshogun.RData" \; source( f ) \; save( list=ls( all=TRUE ) , file=fdata , compress=TRUE ) \; q( save="no" ) \;' | ${R_EXECUTABLE} --silent --no-save
    WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
    COMMENT "Generating modshogun.RData"
)

What follow COMMAND echo are basically commands to be executed in R. When R runs its work directory is given by the function getwd(), in my case this will return the value in ~/.RProfile, which is not my $HOME but a subdirectory of it. I can imagine others may want to set their default R work directory like this too instead of dumping R outputs all over their $HOME

The CMAKE option WORKING_DIRECTORY apparently cannot override the value in ~/.RProfie, so when the shogun build process executes R, it is looking for modshogun.R in WORK_DIRECTORY, which is it's default work directory (defined by .RProfie) rather than ${CMAKE_CURRENT_BINARY_DIR}

Here is my take on it, maybe someone who knows his C++ can just edit these lines so that people don't get tripped over on this little thing in the future (I tried but didn't work)

@besser82
Copy link
Member

@beew: Can you confirm the referenced patch fixes this issue?

besser82 added a commit to besser82/shogun that referenced this issue Jan 31, 2016
@beew
Copy link
Author

beew commented Jan 31, 2016

Just saw the link to your change so I manually edited the file. It works. Thanks for fixing this.

besser82 added a commit that referenced this issue Feb 1, 2016
set working-dir properly when running R (#2654)
@besser82
Copy link
Member

besser82 commented Feb 1, 2016

Issue resolved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants