FlashX
FlashX copied to clipboard
FlashX is a collection of big data analytics tools that perform data analytics in the form of graphs and matrices.
Hi FlashX Team, I am deploying the FlashGraph standalone right now according to your [wiki](https://github.com/flashxio/FlashX/wiki/FlashX-Quick-Start-Guide#convert-a-graph-in-edge-list-format-to-the-flashgraph-format) However, when I convert a graph in edge list format to the FlashGraph format, the...
After I build docker image and try to get into it, it notice me that I need to copy a link to browser to access notebook. But when I did...
Fixes compilation issues
~/FlashX/matrix/bulk_operate.cpp: In instantiation of ‘OutType fm::basic_uops_impl::uop_abs::operator()(const InType&) const [with InType = long unsigned int; OutType = long unsigned int]’: ~/FlashX/matrix/bulk_operate_impl.h:47:18: required from ‘void fm::bulk_uoperate_impl::runA(size_t, const void*, void*) const [with OpType...
In Ubuntu 16.04 and g++ 5.4, I could compile FlashX normally. But, I could not compile FlashX. I use ubuntu latest version(18.04) and g++(7.3). I see below error. /home/kckjn97/flashx/matrix/data_io.cpp:278:17: error:...
If we store a block matrix to SSDs, we may get this error. This bug has been temporarily fixed by converting the block matrix to a normal matrix. We need...
``` > data = 0' failed. Aborted ```
Currently, we only allow local matrices in a DAG to be resized only once. Maybe it's necessary to have every virtual local matrix to make such a decision. If this...
``` X1 = -fp.log(1 + fp.exp(-X)) X2 = X - fp.log(1 + fp.exp(X)) return fp.where(X > 0, X1, X2) ``` The code above has redundant computation. log and exp can...