Said Hadjout
Said Hadjout
Suggestion: move the treatement of vectorized functions from Semantics to the printer
When using Pyccel to accelerate a Python module, type inference requires Pyccel to parse every module that is imported from that module, then recursively all imports of these modules, and...
Stub files are files containing type hints that are only for use by the type checker, they end with `.pyi` see https://www.python.org/dev/peps/pep-0484/#stub-files. we would like to allow the user to...
currently the following syntax is not supported in the `@types` decorators ```python import numpy as np @types(np.int32, results=np.int32) def fib(n): pass ``` This can be solved by moving the conversion...
Is it possible to call the generated function from Python?
is there any chance for NURBS-Python to support LS Dyna keyword Input files?, they support NURBS as well.
In the following example ```python import numpy as np def f(): return np.ones((10,10)).sum() ``` We get this generated code: ```fortran function f() result(Out_0001) implicit none real(f64) :: Out_0001 Out_0001 =...
will redbaron support Python 3.8 grammar ?
BlockMatrix has some hidden assumptions, such as all its block are of the `StencilMatrix` type, especially when we generate the dot product and the transpose methods, this should be changed...
the Matrix conversion method `topetsc` that converts a Psydac `Matrix` object to PETSc `Mat` does not use the sparsity pattern of the Stencil format, we should implement it using [LGMap](https://www.mcs.anl.gov/petsc/petsc4py-current/docs/apiref/petsc4py.PETSc.LGMap-class.html)...