LICENSE
README.md
pyproject.toml
numeta/__init__.py
numeta/array_shape.py
numeta/builder_helper.py
numeta/compiler.py
numeta/datatype.py
numeta/external_library.py
numeta/jit.py
numeta/numeta_function.py
numeta/numeta_library.py
numeta/pyc_extension.py
numeta/settings.py
numeta/signature.py
numeta/types_hint.py
numeta.egg-info/PKG-INFO
numeta.egg-info/SOURCES.txt
numeta.egg-info/dependency_links.txt
numeta.egg-info/requires.txt
numeta.egg-info/top_level.txt
numeta/ast/__init__.py
numeta/ast/function.py
numeta/ast/namespace.py
numeta/ast/procedure.py
numeta/ast/scope.py
numeta/ast/settings.py
numeta/ast/struct_type.py
numeta/ast/tools.py
numeta/ast/types.py
numeta/ast/variable.py
numeta/ast/expressions/__init__.py
numeta/ast/expressions/binary_operation_node.py
numeta/ast/expressions/expression_node.py
numeta/ast/expressions/function_call.py
numeta/ast/expressions/getattr.py
numeta/ast/expressions/getitem.py
numeta/ast/expressions/intrinsic_functions.py
numeta/ast/expressions/literal_node.py
numeta/ast/expressions/various.py
numeta/ast/nodes/__init__.py
numeta/ast/nodes/base_node.py
numeta/ast/nodes/named_entity.py
numeta/ast/statements/__init__.py
numeta/ast/statements/call.py
numeta/ast/statements/function_declaration.py
numeta/ast/statements/namespace_declaration.py
numeta/ast/statements/procedure_declaration.py
numeta/ast/statements/statement.py
numeta/ast/statements/struct_type_declaration.py
numeta/ast/statements/tools.py
numeta/ast/statements/variable_declaration.py
numeta/ast/statements/various.py
numeta/c/__init__.py
numeta/c/c_syntax.py
numeta/c/emitter.py
numeta/c/settings.py
numeta/external_modules/__init__.py
numeta/fortran/__init__.py
numeta/fortran/emitter.py
numeta/fortran/fortran_syntax.py
numeta/fortran/fortran_type.py
numeta/fortran/settings.py
numeta/fortran/external_modules/__init__.py
numeta/fortran/external_modules/iso_c_binding.py
numeta/fortran/external_modules/omp.py
numeta/ir/__init__.py
numeta/ir/emitters.py
numeta/ir/lowering.py
numeta/ir/nodes.py
numeta/wrappers/__init__.py
numeta/wrappers/cases.py
numeta/wrappers/cast.py
numeta/wrappers/cond.py
numeta/wrappers/constant.py
numeta/wrappers/declare_global_constant.py
numeta/wrappers/empty.py
numeta/wrappers/external_library.py
numeta/wrappers/numpy_mem.py
numeta/wrappers/prange.py
numeta/wrappers/range.py
numeta/wrappers/reshape.py
numeta/wrappers/scalar.py
numeta/wrappers/zeros.py
tests/test_arguments.py
tests/test_c_like_bounds.py
tests/test_call.py
tests/test_call_inline.py
tests/test_cases.py
tests/test_cast.py
tests/test_collisions.py
tests/test_comptime.py
tests/test_comptime_type_hint.py
tests/test_cond.py
tests/test_constant.py
tests/test_datatype_declaration.py
tests/test_datatype_getitem.py
tests/test_declare_global.py
tests/test_do.py
tests/test_empty.py
tests/test_external_library.py
tests/test_if.py
tests/test_keyword_arguments.py
tests/test_mul.py
tests/test_namer.py
tests/test_nan.py
tests/test_no_shape_descriptor.py
tests/test_numeta_library.py
tests/test_numpy_mem.py
tests/test_omp.py
tests/test_optional.py
tests/test_order.py
tests/test_pointer.py
tests/test_prange.py
tests/test_reshape.py
tests/test_return.py
tests/test_scalar.py
tests/test_searchsorted.py
tests/test_set_shape.py
tests/test_signature_parsing.py
tests/test_struct.py
tests/test_syntax.py
tests/test_type_hint.py
tests/test_variable_positional_arguments.py
tests/test_zeros.py