Skip to content

Commit

Permalink
xx
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxiaojian committed Sep 14, 2024
1 parent f126520 commit 74ea0ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/analytical_apps/run_app.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

// #include "run_app.h"
#include "run_app.h"

#include <gflags/gflags.h>
#include <gflags/gflags_declare.h>
#include <glog/logging.h>

// #include "run_app_opt.h"
#include "run_app_opt.h"
#include "run_app_vc.h"

int main(int argc, char* argv[]) {
Expand All @@ -41,14 +41,14 @@ int main(int argc, char* argv[]) {

std::string name = FLAGS_application;
if (FLAGS_opt) {
// grape::RunOpt();
grape::RunOpt();
} else if (FLAGS_vc) {
grape::RunVC();
} else {
if (name.find("sssp") != std::string::npos) {
// grape::Run<int64_t, uint32_t, grape::EmptyType, double>();
grape::Run<int64_t, uint32_t, grape::EmptyType, double>();
} else {
// grape::Run<int64_t, uint32_t, grape::EmptyType, grape::EmptyType>();
grape::Run<int64_t, uint32_t, grape::EmptyType, grape::EmptyType>();
}
}

Expand Down

0 comments on commit 74ea0ac

Please sign in to comment.