-
Notifications
You must be signed in to change notification settings - Fork 195
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
falconn/src/examples/glove/makefile seems wrong #103
Comments
Thanks for catching this! |
on current master even when adding simple-serializer to the includes path compilation fails with errors:
|
It seems that "unsigned long" is not recognized by "IsElementary". I can compile after adding the following lines. template <> |
Copy and paste the code below to external/simple-serializer/serialize.h I can compile the code. |
when I run
./make
it will say
../../include/falconn/wrapper/../core/flat_hash_table.h:13:23: fatal error: serialize.h: No such file or directory
so I need to run
g++ -std=c++11 -Wall -O3 -march=native glove.cc -o glove -I ../../include -I ../../../external/eigen -I ../../../external/simple-serializer -pthread
and it goes will
The text was updated successfully, but these errors were encountered: