You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -268,6 +276,9 @@ function broadcasted(::LazyQuasiArrayStyle{1}, ::typeof(*), a::Expansion, f::Exp
268
276
end
269
277
270
278
279
+
_function_mult_broadcasted(_, _, a, B) = Base.Broadcast.Broadcasted{LazyQuasiArrayStyle{2}}(*, (a, B))
280
+
broadcasted(::LazyQuasiArrayStyle{2}, ::typeof(*), a::Expansion, B::AbstractQuasiMatrix) =_function_mult_broadcasted(MemoryLayout(a), MemoryLayout(B), a, B)
281
+
271
282
@evalfunction==(f::Expansion, g::Expansion)
272
283
S,c =arguments(f)
273
284
T,d =arguments(g)
@@ -351,6 +362,11 @@ function demap(V::SubQuasiArray{<:Any,2})
351
362
kr, jr =parentindices(V)
352
363
demap(parent(V)[kr,:])[:,jr]
353
364
end
365
+
functiondemap(wB::ApplyQuasiArray{<:Any,N,typeof(*)}) where N
0 commit comments