-
Notifications
You must be signed in to change notification settings - Fork 769
[SYCL][FPGA] Remove deprecated attribute functionality #4532
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
Conversation
Signed-off-by: Soumi Manna <[email protected]>
da4e140
to
0e98f87
Compare
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.
Looks good to me. A couple of questions:
- are there any plans to change the identifier names? e.g. SYCLIntelFPGAIVDep?
- there is one test change about the "implicit memory" tag that wasn't clear to me. I asked that inline too.
I am not aware of any discussion about this. |
I'd be in support of doing a renaming in a separate patch, but it's low priority if it turns out to be a slog for some reason. |
Agreed. |
Signed-off-by: Soumi Manna <[email protected]>
Signed-off-by: Soumi Manna <[email protected]>
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
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
Thank you @premanandrao and @AaronBallman for the reviews. |
Thanks @bader.
FYI, @romanovvlad, Please update release notes. Thank you. |
* upstream/sycl: (36 commits) [SYCL] Add SYCL2020 target::device enumeration value (intel#4587) [SYCL][Doc] Update ITT instrumentation docs (intel#4503) [SYCL][L0] Make all L0 events have device-visibility (intel#4534) [SYCL] Updated Level-Zero backend spec according to SYCL 2020 standard (intel#4560) [SYCL] Add error_code support for SYCL 1.2.1 exception classes (intel#4574) [SYCL][CI] Provide --ci-defaults option for config script (intel#4583) [CI] Switch GitHub Actions to Ubuntu 20.04 (intel#4582) [SYCL][CUDA] Fix context clearing in PiCuda tests (intel#4483) [SYCL] Hide SYCL service kernels (intel#4519) [SYCL][L0] Fix mismatched ZE call count (intel#4559) [SYCL] Remove function pointers extension (intel#4459) [GitHub Actions] Uplift clang version in post-commit validation (intel#4581) [SYCL] Ignore usm prefetch dummy flag (intel#4568) [SYCL][Group algorithms] Add group sorting algorithms implementation (intel#4439) [SYCL] Resolve name clash with a user defined symbol (intel#4570) [clang-offload-wrapper] Do not create .tgtimg section with -emit-reg-funcs=0 (intel#4577) [SYCL][FPGA] Remove deprecated attribute functionality (intel#4532) [SYCL] Remove _class aliases (intel#4465) [SYCL][CUDA][HIP] Report every device in its own platform (intel#4571) [SYCL][L0] make_device shouldn't need platform as an input (intel#4561) ...
This patch changes the identifier names because we do not use FPGA spelling anymore (Ref: intel#4532) Fixes intel#5105
This patch changes the identifier names because we do not use FPGA attribute spelling anymore (Ref: #4532) Fixes #5105 Signed-off-by: Soumi Manna [[email protected]](mailto:[email protected])
Several FPGA specific attributes in the intelfpga vendor namespace were deprecated in favor of a name in the intel vendor namespace on PR #2568.
Specifically, we deprecated the
[[intelfpga::attr]] spellings in favor of [[intel::fpga_attr]],
[[intelfpga::register]] spelling in favor of [[intel::fpga_register]], and
[[intelfpga::memory]] spelling in favor of [[intel::fpga_memory]].
This patch
removes the deprecated functionality for the intelfpga:: spellings.
The affected attributes are:
intelfpga::num_simd_work_items
intelfpga::max_work_group_size
intelfpga::max_global_work_dim
intelfpga::no_global_work_offset
intelfpga::ivdep
intelfpga::ii
intelfpga::max_concurrency
intelfpga::loop_coalesce
intelfpga::disable_loop_pipelining
intelfpga::max_interleaving
intelfpga::speculated_iterations
intelfpga::doublepump
intelfpga::singlepump
intelfpga::memory
intelfpga::register
intelfpga::bankwidth
intelfpga::numbanks
intelfpga::private_copies
intelfpga::merge
intelfpga::max_replicates
intelfpga::simple_dual_port
intelfpga::bank_bits
intelfpga::force_pow2_depth
intelfpga::scheduler_target_fmax_mhz
Updates tests so that tests use at least one removed spelling of each attributes and now shows a warning with unknown attribute spelling.
Signed-off-by: Soumi Manna [email protected]