20 lines
352 B
Plaintext
20 lines
352 B
Plaintext
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
namespace gpu_easygraph {
|
|
|
|
int cuda_sssp_dijkstra(
|
|
_IN_ const int* V,
|
|
_IN_ const int* E,
|
|
_IN_ const double* W,
|
|
_IN_ const int* sources,
|
|
_IN_ int len_V,
|
|
_IN_ int len_E,
|
|
_IN_ int len_sources,
|
|
_IN_ int target,
|
|
_IN_ int warp_size,
|
|
_OUT_ double* res
|
|
);
|
|
|
|
} // namespace gpu_easygraph |