CONTRIBUTING.md
IMPLEMENTATION.md
LICENSE
MANIFEST.in
README.md
SPEC.md
pyproject.toml
docs/ADDING_OPERATORS.md
docs/networks.md
docs/pretrained.md
docs/operators/adaptive_avg_pool.md
docs/operators/adaptive_norm.md
docs/operators/add.md
docs/operators/attention.md
docs/operators/avg_pool.md
docs/operators/batch_norm.md
docs/operators/clamp.md
docs/operators/cls_token.md
docs/operators/concat.md
docs/operators/conv.md
docs/operators/conv1d.md
docs/operators/cross_attention.md
docs/operators/deconv.md
docs/operators/dropout.md
docs/operators/elu.md
docs/operators/embedding.md
docs/operators/feed_forward.md
docs/operators/flatten.md
docs/operators/gather_token.md
docs/operators/gelu.md
docs/operators/global_avg_pool.md
docs/operators/group_norm.md
docs/operators/hardswish.md
docs/operators/hopfield.md
docs/operators/identity.md
docs/operators/index.md
docs/operators/instance_norm.md
docs/operators/layer_norm.md
docs/operators/leaky_relu.md
docs/operators/linear.md
docs/operators/max_pool.md
docs/operators/mean.md
docs/operators/mish.md
docs/operators/moe.md
docs/operators/mul.md
docs/operators/pad.md
docs/operators/patch_embed.md
docs/operators/permute.md
docs/operators/pixel_shuffle.md
docs/operators/pool_tokens.md
docs/operators/pos_embed.md
docs/operators/pretrained.md
docs/operators/quick_gelu.md
docs/operators/relu.md
docs/operators/resblock.md
docs/operators/reshape.md
docs/operators/rms_norm.md
docs/operators/scale.md
docs/operators/sigmoid.md
docs/operators/silu.md
docs/operators/softmax.md
docs/operators/softplus.md
docs/operators/split.md
docs/operators/sub.md
docs/operators/sum.md
docs/operators/swiglu.md
docs/operators/tanh.md
docs/operators/transformer_block.md
docs/operators/transpose.md
docs/operators/upsample.md
examples/adaptive_normalization.py
examples/networks/README.md
examples/networks/autoencoder.hndl
examples/networks/autoencoder.json
examples/networks/dcgan_discriminator.hndl
examples/networks/dcgan_discriminator.json
examples/networks/dcgan_generator.hndl
examples/networks/dcgan_generator.json
examples/networks/gpt_tiny.hndl
examples/networks/gpt_tiny.json
examples/networks/hopfield_classifier.hndl
examples/networks/hopfield_classifier.json
examples/networks/lenet5.hndl
examples/networks/lenet5.json
examples/networks/mlp.hndl
examples/networks/mlp.json
examples/networks/moe_transformer.hndl
examples/networks/moe_transformer.json
examples/networks/resnet18.hndl
examples/networks/resnet18.json
examples/networks/unet_small.hndl
examples/networks/unet_small.json
examples/networks/vit_tiny.hndl
examples/networks/vit_tiny.json
src/hndl/__init__.py
src/hndl/_parser_worker.py
src/hndl/_version.py
src/hndl/capture.py
src/hndl/config.py
src/hndl/docs.py
src/hndl/errors.py
src/hndl/operator.py
src/hndl/pretrained.py
src/hndl/py.typed
src/hndl/registry.py
src/hndl/resolver.py
src/hndl/settings.py
src/hndl/torch.py
src/hndl/types.py
src/hndl.egg-info/PKG-INFO
src/hndl.egg-info/SOURCES.txt
src/hndl.egg-info/dependency_links.txt
src/hndl.egg-info/requires.txt
src/hndl.egg-info/top_level.txt
src/hndl/operators/__init__.py
src/hndl/operators/_pooling.py
src/hndl/operators/_relations.py
src/hndl/operators/adaptive_avg_pool.py
src/hndl/operators/adaptive_norm.py
src/hndl/operators/add.py
src/hndl/operators/attention.py
src/hndl/operators/avg_pool.py
src/hndl/operators/batch_norm.py
src/hndl/operators/clamp.py
src/hndl/operators/cls_token.py
src/hndl/operators/concat.py
src/hndl/operators/conv.py
src/hndl/operators/conv1d.py
src/hndl/operators/cross_attention.py
src/hndl/operators/deconv.py
src/hndl/operators/dropout.py
src/hndl/operators/elu.py
src/hndl/operators/embedding.py
src/hndl/operators/feed_forward.py
src/hndl/operators/flatten.py
src/hndl/operators/gather_token.py
src/hndl/operators/gelu.py
src/hndl/operators/global_avg_pool.py
src/hndl/operators/group_norm.py
src/hndl/operators/hardswish.py
src/hndl/operators/hopfield.py
src/hndl/operators/identity.py
src/hndl/operators/instance_norm.py
src/hndl/operators/layer_norm.py
src/hndl/operators/leaky_relu.py
src/hndl/operators/linear.py
src/hndl/operators/max_pool.py
src/hndl/operators/mean.py
src/hndl/operators/mish.py
src/hndl/operators/moe.py
src/hndl/operators/mul.py
src/hndl/operators/pad.py
src/hndl/operators/patch_embed.py
src/hndl/operators/permute.py
src/hndl/operators/pixel_shuffle.py
src/hndl/operators/pool_tokens.py
src/hndl/operators/pos_embed.py
src/hndl/operators/pretrained.py
src/hndl/operators/quick_gelu.py
src/hndl/operators/relu.py
src/hndl/operators/resblock.py
src/hndl/operators/reshape.py
src/hndl/operators/rms_norm.py
src/hndl/operators/scale.py
src/hndl/operators/sigmoid.py
src/hndl/operators/silu.py
src/hndl/operators/softmax.py
src/hndl/operators/softplus.py
src/hndl/operators/split.py
src/hndl/operators/sub.py
src/hndl/operators/sum.py
src/hndl/operators/swiglu.py
src/hndl/operators/tanh.py
src/hndl/operators/transformer_block.py
src/hndl/operators/transpose.py
src/hndl/operators/upsample.py
tests/test_adaptive_normalization.py
tests/test_capture.py
tests/test_config.py
tests/test_construction_settings.py
tests/test_custom_operator.py
tests/test_examples.py
tests/test_golden_plans.py
tests/test_network_examples.py
tests/test_package.py
tests/test_parameter_settings.py
tests/test_plans.py
tests/test_pretrained.py
tests/test_rank_dtype.py
tests/test_readme_links.py
tests/test_registry.py
tests/test_resolver.py
tests/test_settings_frontends.py
tests/test_torch.py
tests/operators/__init__.py
tests/operators/conftest.py
tests/operators/test_adaptive_avg_pool.py
tests/operators/test_all_operators.py
tests/operators/test_attention.py
tests/operators/test_avg_pool.py
tests/operators/test_batch_norm.py
tests/operators/test_clamp.py
tests/operators/test_cls_token.py
tests/operators/test_conv1d.py
tests/operators/test_conv_down2.py
tests/operators/test_cross_attention.py
tests/operators/test_dropout.py
tests/operators/test_elu.py
tests/operators/test_embedding.py
tests/operators/test_feed_forward.py
tests/operators/test_gather_token.py
tests/operators/test_gelu.py
tests/operators/test_global_avg_pool.py
tests/operators/test_hardswish.py
tests/operators/test_hopfield.py
tests/operators/test_identity.py
tests/operators/test_instance_norm.py
tests/operators/test_layer_norm.py
tests/operators/test_max_pool.py
tests/operators/test_mean.py
tests/operators/test_mish.py
tests/operators/test_moe.py
tests/operators/test_mul.py
tests/operators/test_pad.py
tests/operators/test_patch_embed.py
tests/operators/test_permute.py
tests/operators/test_pixel_shuffle.py
tests/operators/test_pool_tokens.py
tests/operators/test_pos_embed.py
tests/operators/test_quick_gelu.py
tests/operators/test_resblock.py
tests/operators/test_rms_norm.py
tests/operators/test_scale.py
tests/operators/test_sigmoid.py
tests/operators/test_silu.py
tests/operators/test_softmax.py
tests/operators/test_softplus.py
tests/operators/test_sub.py
tests/operators/test_sum.py
tests/operators/test_swiglu.py
tests/operators/test_transformer_block.py
tests/operators/test_transpose.py
tests/operators/test_upsample.py