Path tracing is the easy-to-code way of implementing global illumination via ray tracing. The idea of path tracing is to send many many rays per pixel and trace each ray depending on the BRDF function of the material. See Cosine Distributed Sampling.
If the goal is to save the global illumination calculation to be used repeatedly as some sort of GI map that doesn't change unless scene changes then path tracing is out of question.