Skip to content

Commit 5d82cd4

Browse files
committed
remove requires
1 parent cbf4eae commit 5d82cd4

File tree

3 files changed

+11
-31
lines changed

3 files changed

+11
-31
lines changed

Project.toml

-5
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,14 @@ version = "0.10.0-dev"
66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
88
Atomix = "a9b6321e-bd34-4604-b9c9-b65b8de01458"
9-
EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869"
109
GPUCompiler = "61eb1bfa-7361-4325-ad38-22787b887f55"
1110
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
1211
LLVM = "929cbde3-209d-540e-8aea-75f648917ca0"
13-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1412
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
1513
OpenCL_jll = "6cb37087-e8b6-5417-8430-1f242f1e46e4"
1614
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1715
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
18-
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1916
SPIRVIntrinsics = "71d1d633-e7e8-4a92-83a1-de8814b09ba8"
20-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2117
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2218
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2319
pocl_jll = "627d6b7a-bbe6-5189-83e7-98cc0a5aeadd"
@@ -40,7 +36,6 @@ InteractiveUtils = "1.6"
4036
LinearAlgebra = "1.6"
4137
MacroTools = "0.5"
4238
PrecompileTools = "1"
43-
Requires = "1.3"
4439
SparseArrays = "<0.0.1, 1.6"
4540
StaticArrays = "0.12, 1.0"
4641
UUIDs = "<0.0.1, 1.6"

src/KernelAbstractions.jl

-15
Original file line numberDiff line numberDiff line change
@@ -830,19 +830,4 @@ PrecompileTools.@compile_workload begin
830830
end
831831
end
832832

833-
if !isdefined(Base, :get_extension)
834-
using Requires
835-
end
836-
837-
@static if !isdefined(Base, :get_extension)
838-
function __init__()
839-
@require EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869" include("../ext/EnzymeExt.jl")
840-
end
841-
end
842-
843-
if !isdefined(Base, :get_extension)
844-
include("../ext/LinearAlgebraExt.jl")
845-
include("../ext/SparseArraysExt.jl")
846-
end
847-
848833
end #module

src/pocl/device/quirks.jl

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
macro print_and_throw(args...)
2-
quote
2+
return quote
33
@println "ERROR: " $(args...) "."
44
throw(nothing)
55
end
@@ -39,16 +39,16 @@ end
3939

4040
# diagonal.jl
4141
# XXX: remove when we have malloc
42-
import LinearAlgebra
43-
@device_override function Base.setindex!(D::LinearAlgebra.Diagonal, v, i::Int, j::Int)
44-
@boundscheck checkbounds(D, i, j)
45-
if i == j
46-
@inbounds D.diag[i] = v
47-
elseif !iszero(v)
48-
@print_and_throw "cannot set off-diagonal entry to a nonzero value"
49-
end
50-
return v
51-
end
42+
# import LinearAlgebra
43+
# @device_override function Base.setindex!(D::LinearAlgebra.Diagonal, v, i::Int, j::Int)
44+
# @boundscheck checkbounds(D, i, j)
45+
# if i == j
46+
# @inbounds D.diag[i] = v
47+
# elseif !iszero(v)
48+
# @print_and_throw "cannot set off-diagonal entry to a nonzero value"
49+
# end
50+
# return v
51+
# end
5252

5353
# number.jl
5454
# XXX: remove when we have malloc

0 commit comments

Comments
 (0)