-
Notifications
You must be signed in to change notification settings - Fork 115
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
[refactor] loopIndexInWrite implementation moved to its root interface #474
[refactor] loopIndexInWrite implementation moved to its root interface #474
Conversation
import java.util.List; | ||
import java.util.Objects; | ||
import java.util.Set; | ||
import java.util.*; |
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.
Remove star import
import uk.ac.manchester.tornado.api.types.arrays.IntArray; | ||
import uk.ac.manchester.tornado.api.types.arrays.LongArray; | ||
import uk.ac.manchester.tornado.api.types.arrays.ShortArray; | ||
import uk.ac.manchester.tornado.api.types.arrays.*; |
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.
same here
import uk.ac.manchester.tornado.drivers.opencl.OCLDeviceContext; | ||
import uk.ac.manchester.tornado.drivers.opencl.OCLDeviceContextInterface; | ||
import uk.ac.manchester.tornado.drivers.opencl.OCLTargetDevice; | ||
import uk.ac.manchester.tornado.drivers.opencl.*; |
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.
same here
import uk.ac.manchester.tornado.drivers.opencl.mm.OCLShortArrayWrapper; | ||
import uk.ac.manchester.tornado.drivers.opencl.mm.OCLVectorWrapper; | ||
import uk.ac.manchester.tornado.drivers.opencl.mm.OCLXPUBuffer; | ||
import uk.ac.manchester.tornado.drivers.opencl.mm.*; |
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.
same here
import uk.ac.manchester.tornado.runtime.common.TornadoSchedulingStrategy; | ||
import uk.ac.manchester.tornado.runtime.common.TornadoXPUDevice; | ||
import uk.ac.manchester.tornado.runtime.common.XPUDeviceBufferState; | ||
import uk.ac.manchester.tornado.runtime.common.*; |
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.
same here
import uk.ac.manchester.tornado.runtime.common.TornadoSchedulingStrategy; | ||
import uk.ac.manchester.tornado.runtime.common.TornadoXPUDevice; | ||
import uk.ac.manchester.tornado.runtime.common.XPUDeviceBufferState; | ||
import uk.ac.manchester.tornado.runtime.common.*; |
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.
same here
import uk.ac.manchester.tornado.drivers.spirv.SPIRVDevice; | ||
import uk.ac.manchester.tornado.drivers.spirv.SPIRVDeviceContext; | ||
import uk.ac.manchester.tornado.drivers.spirv.SPIRVRuntimeImpl; | ||
import uk.ac.manchester.tornado.drivers.spirv.*; |
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.
same here
import uk.ac.manchester.tornado.drivers.spirv.mm.SPIRVObjectWrapper; | ||
import uk.ac.manchester.tornado.drivers.spirv.mm.SPIRVShortArrayWrapper; | ||
import uk.ac.manchester.tornado.drivers.spirv.mm.SPIRVVectorWrapper; | ||
import uk.ac.manchester.tornado.drivers.spirv.mm.*; |
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.
same here
import uk.ac.manchester.tornado.runtime.common.TornadoSchedulingStrategy; | ||
import uk.ac.manchester.tornado.runtime.common.TornadoXPUDevice; | ||
import uk.ac.manchester.tornado.runtime.common.XPUDeviceBufferState; | ||
import uk.ac.manchester.tornado.runtime.common.*; |
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.
same here
import uk.ac.manchester.tornado.runtime.sketcher.Sketch; | ||
import uk.ac.manchester.tornado.runtime.sketcher.TornadoSketcher; | ||
import uk.ac.manchester.tornado.runtime.tasks.CompilableTask; | ||
import uk.ac.manchester.tornado.runtime.common.*; |
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.
same here
Thanks @jjfumero! Just remove the * import from the |
We need to take a look at our default template for code formatting. |
Improvements ~~~~~~~~~~~~~~~~~~ - beehive-lab#468: Cleanup Abstract Metadata Class. - beehive-lab#473: Add maven plugin to build TornadoVM source for the releases. - beehive-lab#474: Refactor `<X>TornadoDevice` to place common methods in the `TornadoXPUInterface`. - beehive-lab#482: Help messages improve when an out-of-memory exception is raised. - beehive-lab#484: Double-type for the trigonometric functions added in the `TornadoMath` class. - beehive-lab#487: Prebuilt API simplified. - beehive-lab#494: Add test to trigger unsupported features related to direct use of Memory Segments. - beehive-lab#509: Add a quick pass configuration to skip the heavy tests during active development. - beehive-lab#532: Improve thread scheduler to support RISC-V Accelerators from Codeplay. - beehive-lab#533: Support for scalar values to be passed via lambda expressions as tasks. - beehive-lab#538: `README` file updated. - beehive-lab#539: Refactor core classes and add new API methods to pass compilation flags to the low-level driver compilers (OpenCL, PTX and Level Zero). - beehive-lab#542: Tagged LevelZero JNI and Beehive Toolkit dependencies added in the build and installer. Compatibility ~~~~~~~~~~~~~~~~~~ - beehive-lab#465: Support for JDK 22 and GraalVM 24.0.2. - beehive-lab#486: Temurin for Windows added in the list of supported JDKs. - beehive-lab#525: Revert usage of String Templates in preparation for JDK 23. - beehive-lab#527: SPIR-V version parameter added. TornadoVM may run previous SPIR-V versions (e.g., ComputeAorta from Codeplay). - beehive-lab#513: LevelZero JNI Library updated to v0.1.4. Bug Fixes ~~~~~~~~~~~~~~~~~~ - beehive-lab#470: README documentation fixed. - beehive-lab#478: Fix the test names that are present in the white list. - beehive-lab#488: FP64 Kind for radian operations and the PTX backend fixed. - beehive-lab#493: Tests Whitelist for PTX backend fixed. - beehive-lab#502: Fix barrier type in the documentation regarding programmability of reductions. - beehive-lab#514: Installer script fixed. - beehive-lab#540: Fix issue with clean-up execution IDs function. - beehive-lab#541: Fix Data Accessors for the prebuilt API. - beehive-lab#543: Fix checkstyle condition and FP16 error message improved.
Improvements ~~~~~~~~~~~~~~~~~~ - beehive-lab#468: Cleanup Abstract Metadata Class. - beehive-lab#473: Add maven plugin to build TornadoVM source for the releases. - beehive-lab#474: Refactor `<X>TornadoDevice` to place common methods in the `TornadoXPUInterface`. - beehive-lab#482: Help messages improved when an out-of-memory exception is raised. - beehive-lab#484: Double-type for the trigonometric functions added in the `TornadoMath` class. - beehive-lab#487: Prebuilt API simplified. - beehive-lab#494: Add test to trigger unsupported features related to direct use of Memory Segments. - beehive-lab#509: Add a quick pass configuration to skip the heavy tests during active development. - beehive-lab#532: Improve thread scheduler to support RISC-V Accelerators from Codeplay. - beehive-lab#533: Support for scalar values to be passed via lambda expressions as tasks. - beehive-lab#538: `README` file updated. - beehive-lab#539: Refactor core classes and add new API methods to pass compilation flags to the low-level driver compilers (OpenCL, PTX and Level Zero). - beehive-lab#542: Tagged LevelZero JNI and Beehive Toolkit dependencies added in the build and installer. Compatibility ~~~~~~~~~~~~~~~~~~ - beehive-lab#465: Support for JDK 22 and GraalVM 24.0.2. - beehive-lab#486: Temurin for Windows added in the list of supported JDKs. - beehive-lab#525: Revert usage of String Templates in preparation for JDK 23. - beehive-lab#527: SPIR-V version parameter added. TornadoVM may run previous SPIR-V versions (e.g., ComputeAorta from Codeplay). - beehive-lab#513: LevelZero JNI Library updated to v0.1.4. Bug Fixes ~~~~~~~~~~~~~~~~~~ - beehive-lab#470: README documentation fixed. - beehive-lab#478: Fix the test names that are present in the white list. - beehive-lab#488: FP64 Kind for radian operations and the PTX backend fixed. - beehive-lab#493: Tests Whitelist for PTX backend fixed. - beehive-lab#502: Fix barrier type in the documentation regarding programmability of reductions. - beehive-lab#514: Installer script fixed. - beehive-lab#540: Fix issue with clean-up execution IDs function. - beehive-lab#541: Fix Data Accessors for the prebuilt API. - beehive-lab#543: Fix checkstyle condition and FP16 error message improved. minor change
Description
loopIndexInWrite
implementation moved to its root interface since the implementation is identical for all device/backend types.Problem description
n/ a.
Backend/s tested
Mark the backends affected by this PR.
OS tested
Mark the OS where this PR is tested.
Did you check on FPGAs?
If it is applicable, check your changes on FPGAs.
How to test the new patch?
This PR affects batch processing: