Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gvec_to_python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gvec-group
gvec_to_python
Commits
c7083a8e
Commit
c7083a8e
authored
1 year ago
by
Stefan Possanner
Browse files
Options
Downloads
Plain Diff
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
!20
Contiguous transform
Pipeline
#200911
passed
1 year ago
Stage: startup
Stage: build
Stage: release
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+3
-5
3 additions, 5 deletions
CHANGELOG.md
pyproject.toml
+1
-1
1 addition, 1 deletion
pyproject.toml
src/gvec_to_python/GVEC_functions.py
+1
-1
1 addition, 1 deletion
src/gvec_to_python/GVEC_functions.py
with
5 additions
and
7 deletions
CHANGELOG.md
+
3
−
5
View file @
c7083a8e
## 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
This diff is collapsed.
Click to expand it.
pyproject.toml
+
1
−
1
View file @
c7083a8e
...
...
@@ -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"
}
...
...
This diff is collapsed.
Click to expand it.
src/gvec_to_python/GVEC_functions.py
+
1
−
1
View file @
c7083a8e
...
...
@@ -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
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment