/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/cpu/gmres/algorithm.h
19 строк
452 B
Dmitry Babokin
Remove the phrase "All rights reserved."
01 апр 2023, 03:48
01 апр 2023, 03:48
33bd2b4
Код
Авторство
О чём код?
/* Copyright (c) 2012-2023, Intel Corporation SPDX-License-Identifier: BSD-3-Clause */ #ifndef __ALGORITHM_H__ #define __ALGORITHM_H__ #include "matrix.h" /* Generalized Minimal Residual Method: * ----------------------------------- * Takes a square matrix and an rhs and uses GMRES to find an estimate for x. * The specified error is relative. */ void gmres(const Matrix &A, const Vector &b, Vector &x, int num_iters, double err); #endif