para-graph 0.1.2

"Para-Graph" delivers swift, parallel graph algorithms in Rust, optimized for CPU and GPU. Ideal for HPC workflows.
Documentation
1
2
3
4
5
6
7
8
#pragma once
#include "para-graph/src/bridge.rs.h"
#include "rust/cxx.h"
#include <vector>
#include <stdexcept>
#include <memory>

std::unique_ptr<std::vector<double>> gaussian_elimination(const size_t n, rust::slice<const rust::Vec<double>> mat);