File: threads.jl

package info (click to toggle)
julia 1.5.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 91,132 kB
  • sloc: lisp: 278,486; ansic: 60,186; cpp: 29,801; sh: 2,403; makefile: 1,998; pascal: 1,313; objc: 647; javascript: 516; asm: 226; python: 161; xml: 34
file content (22 lines) | stat: -rw-r--r-- 519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file is a part of Julia. License is MIT: https://julialang.org/license

using Test, LinearAlgebra, SparseArrays

@testset "threaded SuiteSparse tests" begin
    A = sprandn(200, 200, 0.2)
    b = rand(200)

    function test(n::Integer)
        _A = A[1:n, 1:n]
        _b = b[1:n]
        x = qr(_A) \ _b
        return norm(x)
    end

    res_threads = zeros(100)
    Threads.@threads for i in 1:100
        res_threads[i] = test(i + 100)
    end

    @test res_threads ≈ [test(i + 100) for i in 1:100]
end