-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OPEN: FP integration (v2) #12
Conversation
- remove extra code / spurious comments - radically simplify FloatImmediate checkValue - remove offset and n_levels from FloatAddTemplate
This is better aligned with conventions and the rest of the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey guys,
I appreciate the additional changes to the FloatImmediateType
class, I feel it's very comprehensive now. I left a few minor open points, but modulo a passing CI, this PR seems merge-worthy to me.
EDIT: Currently typing tests are failing, but it seems due to an important of bfloat16
which is simply not implemented.
# | ||
# Copyright (C) 2021, ETH Zurich and University of Bologna. | ||
# | ||
# Author: Moritz Scherer, ETH Zurich |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT: I appreciate the credit, but you might want to claim it for yourselves :)
Using float64_t, float32_t, float16_t and bfloat16_t. Add also a further include from DeeployBasicMath.h, DeeployPULPMath.h for these types.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, I will merge this amazing PR as soon as you add the FloatAdder
test to the CI and justify the changes to banshee.patch
[heart] Francesco Conti reacted to your message:
…________________________________
From: Victor Jung ***@***.***>
Sent: Thursday, November 14, 2024 9:55:12 AM
To: pulp-platform/Deeploy ***@***.***>
Cc: Francesco Conti ***@***.***>; Author ***@***.***>
Subject: Re: [pulp-platform/Deeploy] OPEN: FP integration (v2) (PR #12)
Merged #12<#12> into devel.
—
Reply to this email directly, view it on GitHub<#12 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AB4EPOSD2QKIK4EQ5YVA62L2ARXQBAVCNFSM6AAAAABRPRMKOSVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJVGI4TKNZWGQZTSMY>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
This PR is my own take on #3 and follows up directly all the comments discussed in that PR. I do not continue that one directly as it comes from a branch in a privately owned repository.
Compared to the last version discussed there:
FloatImmediate
checkValue
FloatAddTemplate
Limitations:
bfloat16_t
andfloat16_t
data types due to lack of compiler support in LLVM15.