This is an archive of the discontinued LLVM Phabricator instance.

[RFC][doc] Document that RISC-V's __fp16 has different behavior
AbandonedPublic

Authored by kito-cheng on Mar 5 2021, 12:13 AM.

Details

Summary

RISC-V has a draft extension for half-precision proposed last year[1],
so we think adding a new type for that would be great to make this
easier to use that extension.

We found there is _Float16 and __fp16 types are supported on GCC and
Clang, but _Float16 has C++ supporting issue on GCC site, so we think
support both type is a reasonable choice to us.

However we would like have slight different behavior for __fp16 other
than ACLE: The evaluation format of __fp16 set same as _Float16,
which means no promotion are performed if there is no hardware half-precision
supported.

The only concern to us is it's defined differnt with clang's document,
so we would put this RFC patch here, to make sure it's OK for make
__fp16 has differnt behavior between differnt targets.

This patch contain document change only, implementation would be in
another patches.

[1] https://github.com/riscv/riscv-isa-manual/pull/496
[2] https://github.com/riscv/riscv-elf-psabi-doc/pull/172

Co-authored-by: Evandro Menezes <evandro.menezes@sifive.com>

Diff Detail

Event Timeline

kito-cheng created this revision.Mar 5 2021, 12:13 AM
kito-cheng requested review of this revision.Mar 5 2021, 12:13 AM
Herald added a project: Restricted Project. · View Herald TranscriptMar 5 2021, 12:13 AM
Herald added a subscriber: cfe-commits. · View Herald Transcript
SjoerdMeijer added a comment.EditedMar 5 2021, 3:47 AM

However we would like have slight different behavior for fp16 other than ACLE: The evaluation format of fp16 set same as _Float16, which means no promotion are performed if there is no hardware half-precision supported.

Well, this is really problematic, because you're giving __fp16 a different semantics, you're defining it to behave as _Float16.
Redefining an existing type, let it differentiate from other targets can never be a good thing.
I don't see how this is going to help anyone.

kito-cheng abandoned this revision.Apr 12 2023, 6:23 AM

RISC-V using _Float16 as official half-precision type.