YukeWang96 / MGG_OSDI23

Artifact for OSDI'23: MGG: Accelerating Graph Neural Networks with Fine-grained intra-kernel Communication-Computation Pipelining on Multi-GPU Platforms.
37 stars 4 forks source link

A question about the section 1.4:Compile implementation. #4

Closed WWWzq-01 closed 7 months ago

WWWzq-01 commented 7 months ago

The command sequence mkdir build && cd build && cmake .. && cd .. seems to be missing the make step. In my opinion, it should include make as follows: mkdir build && cd build && cmake .. && make && cd ... Otherwise, the compilation artifacts will not be generated. For example, if I don't run the make command and then try to run python 2_MGG_NP.py directly, an error will be displayed.

image
YukeWang96 commented 7 months ago

May I know if you first launch the docker container before running these compilation commands?

WWWzq-01 commented 7 months ago

Yes, I have launched the Docker container first.