dmlc-core
dmlc-core copied to clipboard
A common bricks library for building scalable and portable distributed machine learning.
Recently we do the TVM deploy work on QNX, and found 2 places that dmlc-core haven't handle correctly. 1. Backtraces Even through QNX have a library named "libbacktrace" can do...
Hi there, Could you please add `cuh` file in the following line: https://github.com/dmlc/dmlc-core/blob/dadcd97fdceb5f395e963b2a637f6ed377f59fc4/scripts/lint.py#L17 Thank you.
because some bugs have been fixed in https://github.com/cameron314/concurrentqueue/blob/master/concurrentqueue.h, it will be better to keep same with the latest concurrentqueue.h
Hello, I am using dmlc-core in qnx env, when compile dmlc-core, error "Unable to determine endianness of your machine; use CMake to compile" happened in endian.h: #ifdef DMLC_CMAKE_LITTLE_ENDIAN // If...
The tacker.py modified by the dmlc-core project fixes the tracker process exit problem caused by other programs accessing the port occupied by the tracker, and changes it to a more...
Right now, standalone test executables in `test/` are built with GNU Make ([Makefile](https://github.com/dmlc/dmlc-core/blob/main/test/dmlc_test.mk)). We should also allow these executables to be built with CMake.
Fix no module named '__main__.util' that not found file util on yarn. Fix should be classpath and not class_path. Support python2.x and python3.9 such as change threading.isAlive to is_alive(https://github.com/python/cpython/blob/87109f4d85c93a870ee8aa0d2b394547d4636b17/Doc/whatsnew/3.9.rst#id717), or...
When split->ReadChunk(...) returns a true value and size is set to zero, the code double the buffer size, but in the next loop, variable 'size' should also be adjust accordingly...
Windows is case-insensitive, but when cross-compiling dmlc from Linux with the MinGW tools this causes problems, because the file is named shlwapi.h in lowercase. include/dmlc/filesystem.h (L21) ```c++ #include #pragma comment(lib,...
If last HDFSStream or singleton HdfsFilesystem object is descructed, i'm confused about "ref_counter_[0] -= 1" might not achieve the desired effect, which will lead to hdfsFS not disconnected. Could you...