Skip to content

Instantly share code, notes, and snippets.

@viktor-ferenczi
viktor-ferenczi / build_ps.sh output
Created May 28, 2015 22:29
Build logs for issue #166
Cloning into 'ps-lite'...
HEAD is now at 2930ac6 fix bug in env when launching using dmlc-*.py with multiple servers
Install third-party libraries for PS
Cloning into 'third_party'...
ar: creating libgtest.a
ar: creating libgtest_main.a
In file included from ./google/protobuf/stubs/stringprintf.h:47:0,
from google/protobuf/stubs/stringprintf.cc:33:
google/protobuf/stubs/stringprintf.cc: In function 'std::string google::protobuf::StringPrintfVector(const char*, const std::vector<std::basic_string<char> >&)':
google/protobuf/stubs/stringprintf.cc:164:59: warning: typedef 'arg_count_mismatch' locally defined but not used [-Wunused-local-typedefs]
fviktor@ml:~/dev/cxxnet$ ./build_ps.sh
Cloning into 'ps-lite'...
remote: Counting objects: 496, done.
remote: Compressing objects: 100% (78/78), done.
remote: Total 496 (delta 43), reused 0 (delta 0), pack-reused 418
Receiving objects: 100% (496/496), 220.61 KiB | 0 bytes/s, done.
Resolving deltas: 100% (276/276), done.
Checking connectivity... done.
Install third-party libraries for PS
configure.ac:55: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
@viktor-ferenczi
viktor-ferenczi / build_ps.sh output
Created May 29, 2015 21:11
Issue #171: Build error: glog/logging.h: No such file or directory
$ ./build_ps.sh
Cloning into 'ps-lite'...
remote: Counting objects: 518, done.
remote: Compressing objects: 100% (100/100), done.
remote: Total 518 (delta 59), reused 0 (delta 0), pack-reused 418
Receiving objects: 100% (518/518), 224.59 KiB | 0 bytes/s, done.
Resolving deltas: 100% (292/292), done.
Checking connectivity... done.
Install third-party libraries for PS
configure.ac:55: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
@viktor-ferenczi
viktor-ferenczi / Build log
Created July 18, 2015 13:48
Compiles with ps-lite, but missing symbol on importing library
fviktor@ml:~/dev/cxxnet$ ./build_ps.sh
Cloning into 'ps-lite'...
remote: Counting objects: 859, done.
remote: Compressing objects: 100% (12/12), done.
remote: Total 859 (delta 0), reused 0 (delta 0), pack-reused 847
Receiving objects: 100% (859/859), 274.49 KiB | 0 bytes/s, done.
Resolving deltas: 100% (565/565), done.
Checking connectivity... done.
Install third-party libraries for PS
configure.ac:55: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
@viktor-ferenczi
viktor-ferenczi / pdio.py
Last active September 8, 2017 22:50 — forked from luispedro/pdio.py
Save & load from a pandas DataFrame/Series
"""Saving and loading Pandas DataFrame and Series objects
Tested with Python 3.6.1 on 64 bit Windows 10
Original blog post: https://metarabbit.wordpress.com/2013/12/10/how-to-save-load-large-pandas-dataframes/
Original Gist was for Python 2.7: https://gist.github.com/luispedro/7887214
"""
import io