Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

regenerate_bindings #44

Merged
merged 3 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Dialects/14/AMX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ function tile_muli(lhs::Value, rhs::Value, acc::Value; res::MLIRType, isZextLhs=
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(isZextLhs != nothing) && push!(attributes, namedattribute("isZextLhs", isZextLhs))
(isZextRhs != nothing) && push!(attributes, namedattribute("isZextRhs", isZextRhs))
!isnothing(isZextLhs) && push!(attributes, namedattribute("isZextLhs", isZextLhs))
!isnothing(isZextRhs) && push!(attributes, namedattribute("isZextRhs", isZextRhs))

create_operation(
"amx.tile_muli", location;
Expand Down
56 changes: 28 additions & 28 deletions src/Dialects/14/Arithmetic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function addf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.addf", location;
Expand Down Expand Up @@ -72,7 +72,7 @@ function addi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.addi", location;
Expand Down Expand Up @@ -109,7 +109,7 @@ function andi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.andi", location;
Expand Down Expand Up @@ -173,7 +173,7 @@ function ceildivsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRTy
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.ceildivsi", location;
Expand Down Expand Up @@ -206,7 +206,7 @@ function ceildivui(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRTy
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.ceildivui", location;
Expand Down Expand Up @@ -380,7 +380,7 @@ function divf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.divf", location;
Expand Down Expand Up @@ -418,7 +418,7 @@ function divsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.divsi", location;
Expand Down Expand Up @@ -457,7 +457,7 @@ function divui(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.divui", location;
Expand Down Expand Up @@ -624,7 +624,7 @@ function floordivsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRT
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.floordivsi", location;
Expand Down Expand Up @@ -682,7 +682,7 @@ function maxf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.maxf", location;
Expand All @@ -702,7 +702,7 @@ function maxsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.maxsi", location;
Expand All @@ -722,7 +722,7 @@ function maxui(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.maxui", location;
Expand Down Expand Up @@ -757,7 +757,7 @@ function minf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.minf", location;
Expand All @@ -777,7 +777,7 @@ function minsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.minsi", location;
Expand All @@ -797,7 +797,7 @@ function minui(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.minui", location;
Expand Down Expand Up @@ -837,7 +837,7 @@ function mulf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.mulf", location;
Expand All @@ -857,7 +857,7 @@ function muli(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.muli", location;
Expand Down Expand Up @@ -894,7 +894,7 @@ function negf(operand::Value; result=nothing::Union{Nothing, MLIRType}, location
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.negf", location;
Expand Down Expand Up @@ -931,7 +931,7 @@ function ori(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType}, l
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.ori", location;
Expand All @@ -951,7 +951,7 @@ function remf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.remf", location;
Expand Down Expand Up @@ -989,7 +989,7 @@ function remsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.remsi", location;
Expand Down Expand Up @@ -1027,7 +1027,7 @@ function remui(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.remui", location;
Expand Down Expand Up @@ -1080,7 +1080,7 @@ function shli(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.shli", location;
Expand Down Expand Up @@ -1114,7 +1114,7 @@ function shrsi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.shrsi", location;
Expand Down Expand Up @@ -1145,7 +1145,7 @@ function shrui(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.shrui", location;
Expand Down Expand Up @@ -1185,7 +1185,7 @@ function subf(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.subf", location;
Expand All @@ -1205,7 +1205,7 @@ function subi(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.subi", location;
Expand Down Expand Up @@ -1321,7 +1321,7 @@ function xori(lhs::Value, rhs::Value; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"arith.xori", location;
Expand Down
28 changes: 14 additions & 14 deletions src/Dialects/14/ArmNeon.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function intr_smull(a::Value, b::Value; res::MLIRType, location=Location())
end

"""
`2d_sdot`
`_2d_sdot`

The two input vectors `b` and `c` have a 2D shape, consisting of either 2
or 4 rows, each row having length 4. This operation computes the pair-wise
Expand All @@ -43,20 +43,20 @@ corresponding entry of `a`:
res[i] := a[i] + dot_product(b[i, ...], c[i, ...])
```
"""
# function 2d_sdot(a::Value, b::Value, c::Value; res::MLIRType, location=Location())
# results = MLIRType[res, ]
# operands = Value[a, b, c, ]
# owned_regions = Region[]
# successors = Block[]
# attributes = NamedAttribute[]
function _2d_sdot(a::Value, b::Value, c::Value; res::MLIRType, location=Location())
results = MLIRType[res, ]
operands = Value[a, b, c, ]
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]

# create_operation(
# "arm_neon.2d.sdot", location;
# operands, owned_regions, successors, attributes,
# results=results,
# result_inference=false
# )
# end
create_operation(
"arm_neon.2d.sdot", location;
operands, owned_regions, successors, attributes,
results=results,
result_inference=false
)
end

"""
`intr_sdot`
Expand Down
20 changes: 10 additions & 10 deletions src/Dialects/14/Async.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function add_to_group(operand::Value, group::Value; rank=nothing::Union{Nothing,
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(rank != nothing) && push!(results, rank)
!isnothing(rank) && push!(results, rank)

create_operation(
"async.add_to_group", location;
Expand Down Expand Up @@ -93,7 +93,7 @@ function await(operand::Value; result=nothing::Union{Nothing, MLIRType}, locatio
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"async.await", location;
Expand All @@ -115,7 +115,7 @@ function coro_begin(id::Value; handle=nothing::Union{Nothing, MLIRType}, locatio
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(handle != nothing) && push!(results, handle)
!isnothing(handle) && push!(results, handle)

create_operation(
"async.coro.begin", location;
Expand Down Expand Up @@ -179,7 +179,7 @@ function coro_id(; id=nothing::Union{Nothing, MLIRType}, location=Location())
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(id != nothing) && push!(results, id)
!isnothing(id) && push!(results, id)

create_operation(
"async.coro.id", location;
Expand All @@ -200,7 +200,7 @@ function coro_save(handle::Value; state=nothing::Union{Nothing, MLIRType}, locat
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(state != nothing) && push!(results, state)
!isnothing(state) && push!(results, state)

create_operation(
"async.coro.save", location;
Expand Down Expand Up @@ -260,7 +260,7 @@ function create_group(size::Value; result=nothing::Union{Nothing, MLIRType}, loc
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"async.create_group", location;
Expand Down Expand Up @@ -360,7 +360,7 @@ function runtime_add_to_group(operand::Value, group::Value; rank=nothing::Union{
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(rank != nothing) && push!(results, rank)
!isnothing(rank) && push!(results, rank)

create_operation(
"async.runtime.add_to_group", location;
Expand Down Expand Up @@ -425,7 +425,7 @@ function runtime_create_group(size::Value; result=nothing::Union{Nothing, MLIRTy
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"async.runtime.create_group", location;
Expand Down Expand Up @@ -491,7 +491,7 @@ function runtime_is_error(operand::Value; is_error=nothing::Union{Nothing, MLIRT
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(is_error != nothing) && push!(results, is_error)
!isnothing(is_error) && push!(results, is_error)

create_operation(
"async.runtime.is_error", location;
Expand Down Expand Up @@ -534,7 +534,7 @@ function runtime_num_worker_threads(; result=nothing::Union{Nothing, MLIRType},
owned_regions = Region[]
successors = Block[]
attributes = NamedAttribute[]
(result != nothing) && push!(results, result)
!isnothing(result) && push!(results, result)

create_operation(
"async.runtime.num_worker_threads", location;
Expand Down
Loading