mlir 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d929e72828573458fe55ff24be3c707e71e7d75c48492507276407d28c188044
4
+ data.tar.gz: 40cb23a0b346d022a3f6d8c60fd9a4b7848970b34a27c27aa44836bf2b46a19b
5
+ SHA512:
6
+ metadata.gz: 3cf8d0227a9eb628ce96fa5e9a7d8749c2e9ce60852e41cb42d7a9d556eba90045372d3b99433792dcd1da980444d1c2793b40f52cf7802dd9e528ed41b12b15
7
+ data.tar.gz: 12cdd4d4b9905e3971e3a1c816f359e574997d9bdaa9679e1b1ba2ed280e84ae81d5aa5aa649a738c3ecc57e4563d806dcda1a19d74dd3459c40ec8dd0b00973
data/.rubocop.yml ADDED
@@ -0,0 +1,23 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.3
3
+ NewCops: enable
4
+
5
+ Style/StringLiterals:
6
+ Enabled: true
7
+ EnforcedStyle: double_quotes
8
+
9
+ Style/StringLiteralsInInterpolation:
10
+ Enabled: true
11
+ EnforcedStyle: double_quotes
12
+
13
+ Layout/LineLength:
14
+ Max: 120
15
+
16
+ Metrics/BlockLength:
17
+ AllowedMethods:
18
+ - describe
19
+ - it
20
+
21
+ require:
22
+ - rubocop-minitest
23
+ - rubocop-rake
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-12-29
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at johnlinvc@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 johnlinvc
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # MLIR
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/mlir`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/mlir. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/mlir/blob/main/CODE_OF_CONDUCT.md).
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the MLIR project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/mlir/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+ require "rake/extensiontask"
6
+
7
+ Rake::TestTask.new(:test) do |t|
8
+ t.libs << "test"
9
+ t.libs << "lib"
10
+ t.test_files = FileList["test/**/test_*.rb"]
11
+ end
12
+
13
+ spec = Gem::Specification.load("mlir.gemspec")
14
+
15
+ Rake::ExtensionTask.new "mlir", spec do |ext|
16
+ ext.lib_dir = "lib/mlir"
17
+ end
18
+
19
+ require "rubocop/rake_task"
20
+
21
+ RuboCop::RakeTask.new
22
+
23
+ task default: %i[test rubocop:autocorrect]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MLIR
4
+ VERSION = "0.1.0"
5
+ end
data/lib/mlir.rb ADDED
@@ -0,0 +1,168 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "mlir/version"
4
+ require "ffi"
5
+ require "forwardable"
6
+
7
+ module MLIR
8
+ class Error < StandardError; end
9
+
10
+ # FFI wrapper for MLIR C API
11
+ module CAPI
12
+ extend FFI::Library
13
+ ffi_lib "MLIR-C"
14
+ IR_C_API_STRUCT_SYMBOLS = %i[
15
+ MlirAsmState
16
+ MlirBytecodeWriterConfig
17
+ MlirContext
18
+ MlirDialect
19
+ MlirDialectRegistry
20
+ MlirOperation
21
+ MlirOpOperand
22
+ MlirOpPrintingFlags
23
+ MlirBlock
24
+ MlirRegion
25
+ MlirSymbolTable
26
+ MlirAttribute
27
+ MlirIdentifier
28
+ MlirLocation
29
+ MlirModule
30
+ MlirType
31
+ MlirValue
32
+ ].freeze
33
+
34
+ IR_C_API_STRUCT_SYMBOLS.each do |struct_symbol|
35
+ klass = Class.new(FFI::Struct)
36
+ klass.layout :storage, :pointer
37
+ Kernel.const_set(struct_symbol, klass)
38
+ end
39
+
40
+ # mapped from MlirNamedAttribute
41
+ class MlirNamedAttribute < FFI::Struct
42
+ layout :name, MlirIdentifier.by_value,
43
+ :attribute, MlirAttribute.by_value
44
+ end
45
+
46
+ # mapped from MlirStringRef
47
+ class MlirStringRef < FFI::Struct
48
+ layout :data, :pointer,
49
+ :length, :size_t
50
+ end
51
+
52
+ # mapped from MlirOperationState
53
+ class MlirOperationState < FFI::Struct
54
+ layout :name, MlirStringRef.by_value,
55
+ :location, MlirLocation.by_value,
56
+ :nResults, :int,
57
+ :results, MlirType.by_ref,
58
+ :nOperands, :int,
59
+ :operands, MlirValue.by_ref,
60
+ :nRegions, :int,
61
+ :regions, MlirRegion.by_ref,
62
+ :nSuccessors, :int,
63
+ :successors, MlirBlock.by_ref,
64
+ :nAttributes, :int,
65
+ :attributes, MlirNamedAttribute.by_ref,
66
+ :enableResultTypeInference, :bool
67
+ end
68
+
69
+ # Helper class to create C array of Mlir C API structs
70
+ class MlirArrayRef
71
+ attr_reader :array, :klass, :item_size
72
+
73
+ extend Forwardable
74
+ include Enumerable
75
+ def_delegators :@array, :each, :size
76
+
77
+ def initialize(array)
78
+ @klass = array.first.class
79
+ @item_size = klass.size
80
+ @array_ref = FFI::MemoryPointer.new(:pointer, array.size * item_size)
81
+ copy_values(array)
82
+ end
83
+
84
+ def copy_values(array)
85
+ @array = array.each_with_index.collect do |item, index|
86
+ x = klass.new(@array_ref + (index * item_size))
87
+ item.members.each do |member|
88
+ x[member] = item[member]
89
+ end
90
+ x
91
+ end
92
+ end
93
+
94
+ def to_ptr
95
+ @array_ref
96
+ end
97
+
98
+ def to_typed_ptr
99
+ @array[0]
100
+ end
101
+ end
102
+
103
+ attach_function :mlirContextCreate, [], MlirContext.by_value
104
+ attach_function :mlirContextDestroy, [MlirContext.by_value], :void
105
+
106
+ attach_function :mlirDialectRegistryCreate, [], MlirDialectRegistry.by_value
107
+ attach_function :mlirDialectRegistryDestroy, [MlirDialectRegistry.by_value], :void
108
+ attach_function :mlirRegisterAllDialects, [MlirDialectRegistry.by_value], :void
109
+ attach_function :mlirContextAppendDialectRegistry, [MlirContext.by_value, MlirDialectRegistry.by_value], :void
110
+ attach_function :mlirStringRefCreateFromCString, [:string], MlirStringRef.by_value
111
+ attach_function :mlirContextGetOrLoadDialect, [MlirContext.by_value, MlirStringRef.by_value], :void
112
+ attach_function :mlirLocationUnknownGet, [MlirContext.by_value], MlirLocation.by_value
113
+ attach_function :mlirIndexTypeGet, [MlirContext.by_value], MlirType.by_value
114
+
115
+ # Type related
116
+ attach_function :mlirTypeDump, [MlirType.by_value], :void
117
+ attach_function :mlirTypeParseGet, [MlirContext.by_value, MlirStringRef.by_value], MlirType.by_value
118
+
119
+ # Attribute related
120
+ attach_function :mlirAttributeParseGet, [MlirContext.by_value, MlirStringRef.by_value], MlirAttribute.by_value
121
+ attach_function :mlirAttributeDump, [MlirAttribute.by_value], :void
122
+ attach_function :mlirNamedAttributeGet, [MlirIdentifier.by_value, MlirAttribute.by_value],
123
+ MlirNamedAttribute.by_value
124
+
125
+ # Identifier related
126
+ attach_function :mlirIdentifierGet, [MlirContext.by_value, MlirStringRef.by_value], MlirIdentifier.by_value
127
+
128
+ # Module related
129
+ attach_function :mlirModuleCreateEmpty, [MlirLocation.by_value], MlirModule.by_value
130
+ attach_function :mlirModuleGetBody, [MlirModule.by_value], MlirBlock.by_value
131
+ attach_function :mlirModuleGetOperation, [MlirModule.by_value], MlirOperation.by_value
132
+ attach_function :mlirModuleFromOperation, [MlirOperation.by_value], MlirModule.by_value
133
+ attach_function :mlirModuleDestroy, [MlirModule.by_value], :void
134
+
135
+ # Region related
136
+ attach_function :mlirRegionCreate, [], MlirRegion.by_value
137
+ attach_function :mlirRegionAppendOwnedBlock, [MlirRegion.by_value, MlirBlock.by_value], :void
138
+
139
+ # Block related
140
+ attach_function :mlirBlockCreate, [:size_t, MlirType.by_ref, MlirLocation.by_ref], MlirBlock.by_value
141
+ attach_function :mlirBlockInsertOwnedOperation, [MlirBlock.by_value, :size_t, MlirOperation.by_value], :void
142
+ attach_function :mlirBlockAppendOwnedOperation, [MlirBlock.by_value, MlirOperation.by_value], :void
143
+ attach_function :mlirBlockGetArgument, [MlirBlock.by_value, :int], MlirValue.by_value
144
+ attach_function :mlirBlockAddArgument, [MlirBlock.by_value, MlirRegion.by_value, MlirLocation.by_value], :void
145
+
146
+ # OperationState related
147
+ attach_function :mlirOperationStateGet, [MlirStringRef.by_value, MlirLocation.by_value], MlirOperationState.by_value
148
+ attach_function :mlirOperationStateAddAttributes, [MlirOperationState.by_ref, :int, MlirNamedAttribute.by_ref],
149
+ :void
150
+ attach_function :mlirOperationStateAddOwnedRegions, [MlirOperationState.by_ref, :int, MlirRegion.by_ref], :void
151
+ attach_function :mlirOperationStateAddResults, [MlirOperationState.by_ref, :int, MlirType.by_ref], :void
152
+ attach_function :mlirOperationStateAddOperands, [MlirOperationState.by_ref, :int, MlirValue.by_ref], :void
153
+ attach_function :mlirOperationGetResult, [MlirOperation.by_value, :int], MlirValue.by_value
154
+
155
+ # Operation related
156
+ attach_function :mlirOperationCreate, [MlirOperationState.by_ref], MlirOperation.by_value
157
+ attach_function :mlirOperationDump, [MlirOperation.by_value], :void
158
+
159
+ module_function
160
+
161
+ def register_all_upstream_dialects(context)
162
+ dialect_registry = mlirDialectRegistryCreate
163
+ mlirRegisterAllDialects(dialect_registry)
164
+ mlirContextAppendDialectRegistry(context, dialect_registry)
165
+ mlirDialectRegistryDestroy(dialect_registry)
166
+ end
167
+ end
168
+ end
data/mlir.gemspec ADDED
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/mlir/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "mlir"
7
+ spec.version = MLIR::VERSION
8
+ spec.authors = ["johnlinvc"]
9
+ spec.email = ["johnlinvc@gmail.com"]
10
+
11
+ spec.summary = "MLIR wrapper"
12
+ spec.description = "Wrapper for LLVM MLIR"
13
+ spec.homepage = "https://github.com/johnlinvc/mlir"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.3.0"
16
+
17
+ # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/johnlinvc/mlir"
21
+ spec.metadata["changelog_uri"] = "https://github.com/johnlinvc/mlir/blob/main/CHANGELOG.md"
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(__dir__) do
26
+ `git ls-files -z`.split("\x0").reject do |f|
27
+ (File.expand_path(f) == __FILE__) ||
28
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile ext/])
29
+ end
30
+ end
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+ # disable extension for now
35
+ # spec.extensions = ["ext/mlir/extconf.rb"]
36
+
37
+ # Uncomment to register a new dependency of your gem
38
+ # spec.add_dependency "rice", "~> 4.1.0"
39
+ spec.add_dependency "ffi" , "~> 1.16.3"
40
+
41
+ # For more information and examples about making a new gem, check out our
42
+ # guide at: https://bundler.io/guides/creating_gem.html
43
+ spec.metadata["rubygems_mfa_required"] = "true"
44
+ end
data/sig/mlir.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module MLIR
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mlir
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - johnlinvc
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-01-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ffi
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.16.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.16.3
27
+ description: Wrapper for LLVM MLIR
28
+ email:
29
+ - johnlinvc@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rubocop.yml"
35
+ - CHANGELOG.md
36
+ - CODE_OF_CONDUCT.md
37
+ - LICENSE.txt
38
+ - README.md
39
+ - Rakefile
40
+ - lib/mlir.rb
41
+ - lib/mlir/version.rb
42
+ - mlir.gemspec
43
+ - sig/mlir.rbs
44
+ homepage: https://github.com/johnlinvc/mlir
45
+ licenses:
46
+ - MIT
47
+ metadata:
48
+ homepage_uri: https://github.com/johnlinvc/mlir
49
+ source_code_uri: https://github.com/johnlinvc/mlir
50
+ changelog_uri: https://github.com/johnlinvc/mlir/blob/main/CHANGELOG.md
51
+ rubygems_mfa_required: 'true'
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 3.3.0
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubygems_version: 3.5.3
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: MLIR wrapper
71
+ test_files: []