Skip to content

Commit 377dd10

Browse files
committed
fix: remove deleted fields [skip ci]
1 parent fc22d8c commit 377dd10

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ PythonCall = "0.9.25"
105105
Random = "1.10"
106106
Random123 = "1.7"
107107
ReactantCore = "0.1.16"
108-
Reactant_jll = "0.0.252"
108+
Reactant_jll = "0.0.251"
109109
ScopedValues = "1.3.0"
110110
Scratch = "1.2"
111111
Sockets = "1.10"

src/xla/Device.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,11 @@ struct DeviceProperties
4040
max_threads_per_block::Cint
4141
max_threads_dim::NTuple{3,Cint}
4242
max_grid_size::NTuple{3,Cint}
43-
clock_rate::Cint
4443
total_const_mem::Csize_t
4544
major::Cint
4645
minor::Cint
4746
multi_processor_count::Cint
4847
can_map_host_memory::Cint
49-
compute_mode::Cint
5048
l2_cache_size::Cint
5149
max_threads_per_multiprocessor::Cint
5250
end
@@ -94,12 +92,10 @@ function Base.show(io::IO, ::MIME"text/plain", props::DeviceProperties)
9492
Max Threads Per Block: $(props.max_threads_per_block)
9593
Max Threads Dim: $(props.max_threads_dim)
9694
Max Grid Size: $(props.max_grid_size)
97-
Clock Rate: $(props.clock_rate)
9895
Total Const Mem: $(_format_bytes(props.total_const_mem))
9996
Version: $(VersionNumber(props.major, props.minor))
10097
Multi Processor Count: $(props.multi_processor_count)
10198
Can Map Host Memory: $(props.can_map_host_memory)
102-
Compute Mode: $(props.compute_mode)
10399
L2 Cache Size: $(props.l2_cache_size)
104100
Max Threads Per Multiprocessor: $(props.max_threads_per_multiprocessor)
105101
""",

0 commit comments

Comments
 (0)