You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LargeVis.cpp:351:48: warning: format specifies type 'int' but the argument has type 'long long' [-Wformat]
printf("Running propagation %d/%d%c", i + 1, n_propagations, 13);
~~ ^~~~~~~~~~~~~~
%lld
1 warning generated.
The text was updated successfully, but these errors were encountered:
Environment: macOS Sierra v.10.12
So after modifying line 347 of
annoylib.h
to changelseek64
to lseek, I compile the source file (in the Linux folder) via:g++ LargeVis.cpp main.cpp -o LargeVis -lm -pthread -lgsl -lgslcblas -Ofast -march=native -ffast-math -L/usr/local/lib -I/usr/local/include
But got this error
The text was updated successfully, but these errors were encountered: