Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Merge requests
!401
Add all the architecture to manage multi-precision data descriptors.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add all the architecture to manage multi-precision data descriptors.
faverge/chameleon:feature/mixed_precision
into
master
Overview
2
Commits
18
Pipelines
0
Changes
109
Merged
Mathieu Faverge
requested to merge
faverge/chameleon:feature/mixed_precision
into
master
1 year ago
Overview
2
Commits
18
Pipelines
0
Changes
109
Expand
Add StarPU codelets for data conversion on GPU for half, and CPU/GPU for single
Add precision reduction and restoration algorithms to have a mix of numerical precision in a single descriptor
0
0
Merge request reports
Compare
master
version 7
ade51854
1 year ago
version 6
f685d43b
1 year ago
version 5
1099efb3
1 year ago
version 4
2f0d203a
1 year ago
version 3
5e30c359
1 year ago
version 2
81480d9f
1 year ago
version 1
120b4b19
1 year ago
master (base)
and
latest version
latest version
423afa68
18 commits,
1 year ago
version 7
ade51854
18 commits,
1 year ago
version 6
f685d43b
18 commits,
1 year ago
version 5
1099efb3
16 commits,
1 year ago
version 4
2f0d203a
16 commits,
1 year ago
version 3
5e30c359
18 commits,
1 year ago
version 2
81480d9f
18 commits,
1 year ago
version 1
120b4b19
17 commits,
1 year ago
109 files
+
2765
−
352
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
109
Search (e.g. *.vue) (Ctrl+P)
cmake_modules/local_subs.py
+
5
−
1
Options
@@ -11,7 +11,7 @@
@author Florent Pruvost
@author Nathalie Furmento
@author Alycia Lisito
@date 2023-07-0
4
@date 2023-07-0
6
"""
_extra_blas
=
[
@@ -39,6 +39,7 @@ _extra_blas = [
(
''
,
'
slatm1
'
,
'
dlatm1
'
,
'
slatm1
'
,
'
dlatm1
'
),
(
''
,
'
sgenm2
'
,
'
dgenm2
'
,
'
cgenm2
'
,
'
zgenm2
'
),
(
''
,
'
slag2c_fake
'
,
'
dlag2z_fake
'
,
'
slag2c
'
,
'
dlag2z
'
),
(
''
,
'
slag2d
'
,
'
slag2d
'
,
'
clag2z
'
,
'
clag2z
'
),
(
''
,
'
slag2h
'
,
'
dlag2h
'
,
'
slag2h
'
,
'
dlag2h
'
),
(
''
,
'
hlag2s
'
,
'
hlag2d
'
,
'
hlag2s
'
,
'
hlag2d
'
),
(
''
,
'
slag2h
'
,
'
dlag2h
'
,
'
clag2x
'
,
'
zlag2x
'
),
@@ -48,6 +49,8 @@ _extra_blas = [
(
''
,
'
sgesum
'
,
'
dgesum
'
,
'
cgesum
'
,
'
zgesum
'
),
(
''
,
'
sgersum
'
,
'
dgersum
'
,
'
cgersum
'
,
'
zgersum
'
),
(
''
,
'
sprint
'
,
'
dprint
'
,
'
cprint
'
,
'
zprint
'
),
(
''
,
'
sgered
'
,
'
dgered
'
,
'
cgered
'
,
'
zgered
'
),
(
''
,
'
sgerst
'
,
'
dgerst
'
,
'
cgerst
'
,
'
zgerst
'
),
]
_extra_BLAS
=
[
[
x
.
upper
()
for
x
in
row
]
for
row
in
_extra_blas
]
@@ -114,6 +117,7 @@ subs = {
(
'
CHAMELEON_p
'
,
'
CHAMELEON_s
'
,
'
CHAMELEON_d
'
,
'
CHAMELEON_c
'
,
'
CHAMELEON_z
'
),
(
'
RUNTIME_P
'
,
'
RUNTIME_s
'
,
'
RUNTIME_d
'
,
'
RUNTIME_c
'
,
'
RUNTIME_z
'
),
(
'
chameleon_p
'
,
'
chameleon_s
'
,
'
chameleon_d
'
,
'
chameleon_c
'
,
'
chameleon_z
'
),
(
'
codelet_p
'
,
'
codelet_ds
'
,
'
codelet_ds
'
,
'
codelet_zc
'
,
r
'
codelet_zc\b
'
),
(
'
codelet_p
'
,
'
codelet_s
'
,
'
codelet_d
'
,
'
codelet_c
'
,
'
codelet_z
'
),
(
'
runtime_p
'
,
'
runtime_s
'
,
'
runtime_d
'
,
'
runtime_c
'
,
'
runtime_z
'
),
(
'
testing_p
'
,
'
testing_s
'
,
'
testing_d
'
,
'
testing_c
'
,
'
testing_z
'
),
Loading