[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Octave-bug-tracker] [bug #63015] sparse disables openblas threading
From: |
anonymous |
Subject: |
[Octave-bug-tracker] [bug #63015] sparse disables openblas threading |
Date: |
Sun, 4 Sep 2022 17:49:33 -0400 (EDT) |
URL:
<https://savannah.gnu.org/bugs/?63015>
Summary: sparse disables openblas threading
Project: GNU Octave
Submitter: None
Submitted: Sun 04 Sep 2022 09:49:32 PM UTC
Category: Performance
Severity: 3 - Normal
Priority: 5 - Normal
Item Group: Performance
Status: None
Assigned to: None
Originator Name:
Originator Email:
Open/Closed: Open
Release: 7.2.0
Discussion Lock: Any
Operating System: GNU/Linux
_______________________________________________________
Follow-up Comments:
-------------------------------------------------------
Date: Sun 04 Sep 2022 09:49:32 PM UTC By: Anonymous
A = zeros (25e3, 25e3);
A(randi (numel(A), 1, 5e4)) = 1;
B = sparse (A);
tic
R = A^29;
toc
tic
S = B^29;
toc
A^29 uses all the cores available to OpenBlas.
B^29 disables that and uses only one core, so it takes (number of cores) as
long to do it.
Can sparse not disable OpenBlas threading?
_______________________________________________________
Reply to this item at:
<https://savannah.gnu.org/bugs/?63015>
_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/
- [Octave-bug-tracker] [bug #63015] sparse disables openblas threading,
anonymous <=