chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:36:30 +08:00
commit 55ab4e4a73
473 changed files with 72932 additions and 0 deletions
@@ -0,0 +1,20 @@
#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