About metis
#424
Replies: 1 comment 2 replies
-
We add fake function for Windows because we had compilation problem at that time. Our metis actually works for Linux and Mac, but not for Windows. Maybe later we will spend some time to solve this problem. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I also tend to use cython accelerate the graoh training speed. Now I need to use third party metis without add other files, it will output error LNK1120: 1 unresolved externals.
Your pgl's third party metis just add win.h and win.c which have fake function like METIS_Kway_win32 and it works.
Why it works in cython. I read cython's document in using c++ third party , it hasn't talk about add files such as win.h.
Does it mean when use third party in cython , we must to add win.h and win.c to make pyx work?I mean use a fake func to compile, and use original func to work, because I only see win == 0.
Beta Was this translation helpful? Give feedback.
All reactions