GithubHelp home page GithubHelp logo

malloc.h about word2vec HOT 5 OPEN

tricao avatar tricao commented on September 25, 2024
malloc.h

from word2vec.

Comments (5)

GoogleCodeExporter avatar GoogleCodeExporter commented on September 25, 2024
malloc.h is non-standard linux-specific header.
malloc() function always exists in stdlib.h - it's guaranteed by standard.
So, stdlib.h is much better than malloc.h

Original comment by [email protected] on 2 Dec 2014 at 11:05

  • Added labels: ****
  • Removed labels: ****

from word2vec.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 25, 2024
Dirty solution, but it works:
In OSx Lion, Mountain Lion, Maveriks, Yosemite, the lib malloc.h is in the 
directory /usr/include/malloc
So, do:

 cd /usr/include/malloc
 sudo cp malloc.h ..

and then go to your word2vec folder and compile with make.

Original comment by [email protected] on 13 Jan 2015 at 1:38

  • Added labels: ****
  • Removed labels: ****

from word2vec.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 25, 2024
Dirty solution did not work for me:

distance.c:18:10: fatal error: 'malloc.h' file not found
#include <malloc.h>
         ^
1 error generated.
make: *** [distance] Error 1
$cp /usr/include/malloc/malloc.h .
$make
gcc distance.c -o distance -lm -pthread -O3 -march=native -Wall -funroll-loops 
-Wno-unused-result
distance.c:18:10: error: 'malloc.h' file not found with <angled> include; use 
"quotes" instead
#include <malloc.h>
         ^~~~~~~~~~
         "malloc.h"
distance.c:46:19: warning: implicitly declaring library function 'malloc' with 
type 'void *(unsigned long)'
  vocab = (char *)malloc((long long)words * max_w * sizeof(char));
                  ^
distance.c:46:19: note: please include the header <stdlib.h> or explicitly 
provide a declaration for 'malloc'
distance.c:31:8: warning: unused variable 'ch' [-Wunused-variable]
  char ch;
       ^
2 warnings and 1 error generated.
make: *** [distance] Error 1

Original comment by [email protected] on 30 Jan 2015 at 8:08

  • Added labels: ****
  • Removed labels: ****

from word2vec.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 25, 2024
You have to change <malloc.h> to "malloc.h" in all of the c files. Then it will 
compiles on osx.

Original comment by [email protected] on 10 Feb 2015 at 7:00

  • Added labels: ****
  • Removed labels: ****

from word2vec.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 25, 2024
"malloc.h" must be removed from anywhere as a non-standatd header.
"stdlib.h" must be used instead.

See here 
http://stackoverflow.com/questions/12973311/difference-between-stdlib-h-and-mall
oc-h

Original comment by [email protected] on 10 Feb 2015 at 8:55

  • Added labels: ****
  • Removed labels: ****

from word2vec.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.