kumi 0.0.28 → 0.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/kumi/analyzer.rb +1 -10
- data/lib/kumi/schema.rb +1 -0
- data/lib/kumi/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 349c4ee5dcfa90fbdba070f6dae7a8beadc85b418294a4a5621257580f2e2fdb
|
4
|
+
data.tar.gz: b4a5da662615caf4a0d85bed9dfeee4d7cfde6c30eb48c860c026843b23edafd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 928c8e662139cb9fa5ecc74da52bc83e47850479c6362ccb87f25d751c5c7db73d98daced9525c8c0089f1dc145d7fd1bac509328b64720631c0320ca8b528e1
|
7
|
+
data.tar.gz: 73569e85aade8cd602eb11f54c146fd343440ce75bc8ec11fb3d1e5f4fd03076474a99d315e0d2ce612b88c901aa434d2a22e57fb1f164903dfcdbf8477bc236
|
data/CHANGELOG.md
CHANGED
data/lib/kumi/analyzer.rb
CHANGED
@@ -14,16 +14,7 @@ module Kumi
|
|
14
14
|
Passes::SemanticConstraintValidator, # 5. Validates DSL semantic constraints at AST level.
|
15
15
|
Passes::DependencyResolver, # 6. Builds the dependency graph with conditional dependencies.
|
16
16
|
Passes::Toposorter, # 7. Creates the final evaluation order, allowing safe cycles.
|
17
|
-
|
18
|
-
# Passes::TypeInferencerPass, # 9. Infers types for all declarations (uses vectorization metadata).
|
19
|
-
# Passes::TypeChecker, # 10. Validates types using inferred information.
|
20
|
-
Passes::InputAccessPlannerPass # 11. Plans access strategies for input fields.
|
21
|
-
# Passes::ScopeResolutionPass, # 12. Plans execution scope and lifting needs for declarations.
|
22
|
-
# Passes::JoinReducePlanningPass, # 13. Plans join/reduce operations (Generates IR Structs)
|
23
|
-
# Passes::LowerToIRPass, # 14. Lowers the schema to IR (Generates IR Structs)
|
24
|
-
# Passes::LoadInputCSE, # 15. Eliminates redundant load_input operations
|
25
|
-
# Passes::IRDependencyPass, # 16. Extracts IR-level dependencies for VM execution optimization
|
26
|
-
# Passes::IRExecutionSchedulePass # 17. Builds a precomputed execution schedule.
|
17
|
+
Passes::InputAccessPlannerPass # 8. Plans access strategies for input fields.
|
27
18
|
].freeze
|
28
19
|
|
29
20
|
# Pipeline passes for the determinisitic NAST->LIR approach
|
data/lib/kumi/schema.rb
CHANGED
@@ -11,6 +11,7 @@ module Kumi
|
|
11
11
|
module Schema
|
12
12
|
# The `__syntax_tree__` is available on the class for introspection.
|
13
13
|
attr_reader :__kumi_syntax_tree__, :__kumi_compiled_module__
|
14
|
+
alias_method :__syntax_tree__, :__kumi_syntax_tree__
|
14
15
|
|
15
16
|
def build_syntax_tree(&)
|
16
17
|
@__kumi_syntax_tree__ = Kumi::Core::RubyParser::Dsl.build_syntax_tree(&)
|
data/lib/kumi/version.rb
CHANGED