Skip to content
Snippets Groups Projects
Commit 8987c02c authored by M Algah Fattah Illahi's avatar M Algah Fattah Illahi
Browse files

set template in paralel.cu

parent b22667c9
No related merge requests found
# binaries
bin/*
# scripts
connect
push
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
int main () {
// allocate memory in host for the graph
// code goes here
// allocate memory in the host for the result matrice
// code goes here
// copy graph from host to device
// code goes here
// start timer
// code goes here
// calculate the shortest paths using device
// code goes here
// copy result array from device to host
// code goes here
// synchronize device
// code goes here
// stop the timer
// code goes here
// write result matrice to a file
// code goes here
return 0;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment