LICENSE
README.md
pyproject.toml
src/aether/__init__.py
src/aether/__init__.pyi
src/aether/__main__.py
src/aether/cli.py
src/aether/py.typed
src/aether/sdk.py
src/aether/adapters/__init__.py
src/aether/adapters/lora.py
src/aether/agentic/__init__.py
src/aether/agentic/workflow.py
src/aether/attention/__init__.py
src/aether/attention/mla.py
src/aether/backends/__init__.py
src/aether/backends/base.py
src/aether/backends/capabilities.py
src/aether/backends/compiled_handle.py
src/aether/backends/hardware_backends.py
src/aether/backends/hardware_detector.py
src/aether/backends/llamacpp_backend.py
src/aether/backends/mlx_backend.py
src/aether/backends/native_cpu_backend.py
src/aether/backends/onnx_backend.py
src/aether/backends/registry.py
src/aether/backends/torch_backend.py
src/aether/backends/trtllm_backend.py
src/aether/backends/vllm_backend.py
src/aether/compiler/__init__.py
src/aether/compiler/aeg_format_v2.py
src/aether/compiler/compiler.py
src/aether/compiler/config.py
src/aether/compiler/plan.py
src/aether/compiler/report.py
src/aether/compiler/weight_quantizer.py
src/aether/compiler/calibration/__init__.py
src/aether/compiler/calibration/datasets.py
src/aether/compiler/calibration/perplexity.py
src/aether/compiler/calibration/sensitivity.py
src/aether/compiler/stage1_ingestion/__init__.py
src/aether/compiler/stage1_ingestion/architecture_detector.py
src/aether/compiler/stage1_ingestion/gguf_loader.py
src/aether/compiler/stage1_ingestion/gguf_loader_complete.py
src/aether/compiler/stage1_ingestion/ingestion.py
src/aether/compiler/stage1_ingestion/mla_loader.py
src/aether/compiler/stage1_ingestion/mlx_loader.py
src/aether/compiler/stage1_ingestion/moe_loader.py
src/aether/compiler/stage1_ingestion/onnx_loader.py
src/aether/compiler/stage1_ingestion/pytorch_loader.py
src/aether/compiler/stage1_ingestion/safetensors_loader.py
src/aether/compiler/stage1_ingestion/ssm_loader.py
src/aether/compiler/stage1_ingestion/video_loader.py
src/aether/compiler/stage1_ingestion/vlm_loader.py
src/aether/compiler/stage2_optimizer/__init__.py
src/aether/compiler/stage2_optimizer/base_pass.py
src/aether/compiler/stage2_optimizer/optimizer.py
src/aether/compiler/stage2_optimizer/pass10_mtp_head.py
src/aether/compiler/stage2_optimizer/pass11_grammar_constraint.py
src/aether/compiler/stage2_optimizer/pass12_model_merging.py
src/aether/compiler/stage2_optimizer/pass13_ttt_fast_weight.py
src/aether/compiler/stage2_optimizer/pass14_semantic_kv_compression.py
src/aether/compiler/stage2_optimizer/pass15_cross_layer_kv.py
src/aether/compiler/stage2_optimizer/pass16_green_energy.py
src/aether/compiler/stage2_optimizer/pass17_tee_wrapping.py
src/aether/compiler/stage2_optimizer/pass18_mdlm_drafter.py
src/aether/compiler/stage2_optimizer/pass19_sub2bit_quant.py
src/aether/compiler/stage2_optimizer/pass1_operator_fusion.py
src/aether/compiler/stage2_optimizer/pass20_video_compression.py
src/aether/compiler/stage2_optimizer/pass21_advanced_peft.py
src/aether/compiler/stage2_optimizer/pass22_rlvr_verifier.py
src/aether/compiler/stage2_optimizer/pass2_sensitivity_analysis.py
src/aether/compiler/stage2_optimizer/pass3_precision_assignment.py
src/aether/compiler/stage2_optimizer/pass4_kv_cache_structuring.py
src/aether/compiler/stage2_optimizer/pass5_moe_routing.py
src/aether/compiler/stage2_optimizer/pass6_parallelism_discovery.py
src/aether/compiler/stage2_optimizer/pass7_reasoning_graph.py
src/aether/compiler/stage2_optimizer/pass8_minference.py
src/aether/compiler/stage2_optimizer/pass8_sparse_attention.py
src/aether/compiler/stage2_optimizer/pass9_pruning_sparsity.py
src/aether/compiler/stage3_targeting/__init__.py
src/aether/compiler/stage3_targeting/backend_selector.py
src/aether/compiler/stage3_targeting/hardware_profile.py
src/aether/compiler/stage3_targeting/kernel_emitter.py
src/aether/compiler/stage3_targeting/riscv_npu_ir.py
src/aether/compiler/stage3_targeting/target_cpu.py
src/aether/compiler/stage3_targeting/target_cuda.py
src/aether/compiler/stage3_targeting/target_metal.py
src/aether/compiler/stage3_targeting/target_openvino.py
src/aether/compiler/stage3_targeting/target_registry.py
src/aether/compiler/stage3_targeting/target_riscv_cervell.py
src/aether/compiler/stage3_targeting/target_riscv_mips.py
src/aether/compiler/stage3_targeting/target_riscv_sifive.py
src/aether/compiler/stage3_targeting/target_riscv_xuantie.py
src/aether/compiler/stage3_targeting/target_rocm.py
src/aether/core/__init__.py
src/aether/core/aeg_format.py
src/aether/core/aeg_format_v31.py
src/aether/core/aeg_ir.py
src/aether/core/constants.py
src/aether/core/exceptions.py
src/aether/core/graph.py
src/aether/core/hash_utils.py
src/aether/core/types.py
src/aether/core/weight_store.py
src/aether/cuda/__init__.py
src/aether/cuda/graph_manifest.py
src/aether/cuda/graphs.py
src/aether/distillation/__init__.py
src/aether/distillation/pipeline.py
src/aether/distillation/reward_model.py
src/aether/ecosystem/__init__.py
src/aether/ecosystem/sdks.py
src/aether/ecosystem/vscode_plugin.py
src/aether/fleet/__init__.py
src/aether/fleet/health.py
src/aether/fleet/manager.py
src/aether/hub/__init__.py
src/aether/hub/auth.py
src/aether/hub/cache.py
src/aether/hub/client.py
src/aether/hub/server.py
src/aether/hybrid/__init__.py
src/aether/hybrid/state.py
src/aether/inference/__init__.py
src/aether/inference/multimodal.py
src/aether/inference/rag.py
src/aether/kernels/__init__.py
src/aether/kernels/attention.py
src/aether/kernels/base.py
src/aether/kernels/ffn.py
src/aether/kernels/gemm.py
src/aether/kernels/kernel_falcon.py
src/aether/kernels/native_cpu.py
src/aether/kernels/native_cuda.py
src/aether/kernels/native_metal.py
src/aether/kernels/native_rocm.py
src/aether/kernels/norm.py
src/aether/kernels/rope.py
src/aether/moe/__init__.py
src/aether/moe/expert_manager.py
src/aether/moe/planner.py
src/aether/moe/router.py
src/aether/moe/sparsity.py
src/aether/observability/__init__.py
src/aether/observability/benchmark_runner.py
src/aether/observability/ci_pipeline.py
src/aether/observability/evaluators.py
src/aether/observability/gates.py
src/aether/observability/otel.py
src/aether/parallelism/__init__.py
src/aether/parallelism/collective_backends.py
src/aether/parallelism/distributed.py
src/aether/parallelism/hardware_topology.py
src/aether/parallelism/mesh.py
src/aether/parallelism/planner.py
src/aether/parallelism/sharding.py
src/aether/provenance/__init__.py
src/aether/provenance/fingerprint.py
src/aether/provenance/manifest.py
src/aether/provenance/watermark.py
src/aether/quantization/__init__.py
src/aether/quantization/assignment.py
src/aether/quantization/codecs.py
src/aether/quantization/formats.py
src/aether/quantization/packing.py
src/aether/quantization/pruning.py
src/aether/quantization/quantizer.py
src/aether/quantization/sensitivity.py
src/aether/runtime/__init__.py
src/aether/runtime/aeg_loader.py
src/aether/runtime/agentic_session.py
src/aether/runtime/cascade_router.py
src/aether/runtime/compute_controller.py
src/aether/runtime/config.py
src/aether/runtime/cpu_engine.py
src/aether/runtime/eagle.py
src/aether/runtime/encoder_engine.py
src/aether/runtime/executor.py
src/aether/runtime/hardware.py
src/aether/runtime/hot_reload.py
src/aether/runtime/hybrid_engine.py
src/aether/runtime/kv_cache.py
src/aether/runtime/long_context.py
src/aether/runtime/mamba2_engine.py
src/aether/runtime/mamba_engine.py
src/aether/runtime/mla_engine.py
src/aether/runtime/model_registry.py
src/aether/runtime/native_distributed_engine.py
src/aether/runtime/positional.py
src/aether/runtime/precision_manager.py
src/aether/runtime/r10_video_kv_manager.py
src/aether/runtime/r11_semantic_kv_cache.py
src/aether/runtime/r12_cxl_kv_pool.py
src/aether/runtime/r12_rlvr_harness.py
src/aether/runtime/r1_peagle_engine.py
src/aether/runtime/r2_multi_agent_kv.py
src/aether/runtime/r3_grammar_fsm.py
src/aether/runtime/r4_slo_scheduler.py
src/aether/runtime/r5_ttt_engine.py
src/aether/runtime/r6_mcp_integration.py
src/aether/runtime/r7_green_power_manager.py
src/aether/runtime/r8_tee_manager.py
src/aether/runtime/r9_diffusion_spec_engine.py
src/aether/runtime/r9_sub2bit_kv_cache.py
src/aether/runtime/runtime.py
src/aether/runtime/rwkv_engine.py
src/aether/runtime/scheduler.py
src/aether/runtime/seq2seq_engine.py
src/aether/runtime/session.py
src/aether/runtime/speculative.py
src/aether/runtime/torch_engine.py
src/aether/runtime/torch_state_engine.py
src/aether/runtime/torch_tensor_parallel.py
src/aether/runtime/torch_transformer_engine.py
src/aether/safety/__init__.py
src/aether/safety/guard.py
src/aether/safety/guardrails.py
src/aether/safety/policy.py
src/aether/safety/production_safety.py
src/aether/server/__init__.py
src/aether/server/app.py
src/aether/server/grpc_service.py
src/aether/server/metrics.py
src/aether/server/middleware.py
src/aether/server/routes.py
src/aether/server/proto/__init__.py
src/aether/server/proto/aether_pb2.py
src/aether/server/proto/aether_pb2_grpc.py
src/aether/targets/__init__.py
src/aether/targets/cpu_kernels.py
src/aether/targets/cuda_kernels.py
src/aether/targets/metal_kernels.py
src/aether/targets/registry.py
src/aether/targets/rocm_kernels.py
src/aether/targets/templates.py
src/aether/utils/__init__.py
src/aether/utils/file_io.py
src/aether/utils/logging.py
src/aether/utils/memory.py
src/aether/utils/profiling.py
src/aether/utils/telemetry.py
src/aether/utils/threading.py
src/aether_runtime.egg-info/PKG-INFO
src/aether_runtime.egg-info/SOURCES.txt
src/aether_runtime.egg-info/dependency_links.txt
src/aether_runtime.egg-info/entry_points.txt
src/aether_runtime.egg-info/requires.txt
src/aether_runtime.egg-info/top_level.txt
tests/test_passes_v2.py
tests/test_runtime_v2.py