Skip to content

Instantly share code, notes, and snippets.

View lopezm94's full-sized avatar

Juan López lopezm94

  • Barcelona, Spain
View GitHub Profile
@lopezm94
lopezm94 / summer-summary.md
Last active August 22, 2016 22:44
Google Summer of Code - 2016

About IterativeSolvers.jl

IterativeSolvers.jl is a Julia package that provides iterative algorithms for solving linear systems, eigensystems and singular value problems. The purpose of this package is to provide efficient Julia implementations for iterative methods. The package aims to accept a wide variety of input types and that's why most arguments don't specify a specific type.

Project Abstract:

This proposal consists of the design of an API for Iterative methods in Julia and the setup of benchmarks and a regression tracker.

@lopezm94
lopezm94 / simple_test.jl
Created May 26, 2016 21:24
Test for wrappers
using FactCheck
export testFunc
function testFunc(f::Function)
n = 50
srand(1234321)
for T in (Float32, Float64, Complex64, Complex128)
context("Matrix{$T}") do
A = convert(Matrix{T}, randn(n,n))