Skip to content
Snippets Groups Projects
Commit c7083a8e authored by Stefan Possanner's avatar Stefan Possanner
Browse files

Merge branch 'contiguous-transform' into 'master'

Contiguous transform

See merge request !20
parents cfa31efa 7c761401
No related branches found
No related tags found
1 merge request!20Contiguous transform
Pipeline #200911 passed
## Version 1.2.0
## Version 1.2.2
* Compile with language C by default.
* Added command line options, seen with `compile-gvec-tp -h`
* The "--compiler" option can now take the four compilers available in pyccel ("GNU" is the default, "intel", "PGI", "nvidia").
Moreover, a JSON file can be specified to define a custom compiler (see pyccel doc).
\ No newline at end of file
* In 1.2.1 the option `flat_eval` was added for marker evaluation.
* Return a numpy contiguous array from `GVEC.transform()`.
\ No newline at end of file
......@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "gvec-to-python"
version = "1.2.1"
version = "1.2.2"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
......
......@@ -868,6 +868,6 @@ class GVEC:
out = matT @ b
else:
out = mat @ b
out = GVEC_domain.finalize_batch_vector(out)
out = np.ascontiguousarray(GVEC_domain.finalize_batch_vector(out))
return out[0], out[1], out[2]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment