chenxuhao / GraphMiner

Graph Pattern Mining
MIT License
87 stars 17 forks source link

Issues with GPU fsm code #6

Open 0x0cqq opened 2 years ago

0x0cqq commented 2 years ago

When I want to run FSM code on dataset mico, a segment fault occured. I think it may be caused by the incorrect usage of graph construction method in src/fsm/main.cc:21. However, when I fix that error by adding an argument to the call(changed to Graph g(argv[1], 0, 1, 1);) , it gives me a error 700: Cuda error in file 'gpu_base.cu' in line 493 : an illegal memory access was encountered.

The command that I used:

./bin/fsm_gpu_base ./inputs/mico/graph 2 300

Could you please help me to fix that error?