Compiling a parallel loop with a complex access pattern for writing an array for GPU and CPU

Information

  • Patent Grant
  • 10416975
  • Patent Number
    10,416,975
  • Date Filed
    Thursday, November 9, 2017
    7 years ago
  • Date Issued
    Tuesday, September 17, 2019
    5 years ago
Abstract
Computer-implemented methods are provided for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU. A method includes compiling the parallel loop by (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time. The method further includes determining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop.
Description
BACKGROUND
Technical Field

The present invention relates generally to information processing and, in particular, to compiling a parallel loop with a complex access pattern for writing an array for a Graphics Processing Unit (GPU) and a Central Processing Unit (CPU).


Description of the Related Art

For high performance, an Application Programming Interface (API) is provided for data transfer between a Central Processing Unit (CPU) and a Graphics Processing Unit (GPU), by which only contiguous memory regions are transferred there between. For example, such an API would include cudaMemcpy in CUDA®, the memory coherency mechanism per page in NVLink®, and the cache coherency mechanism per cache line in NVLink2.


For a parallel loop that is executed by multiple threads with write operations to an array, it is not easy for a compiler to generate parallel code for the GPU and CPU which can be executed in parallel when regions of an array to be written by a thread are not contiguous. For example, one difficulty is that it is not known how to correctly generate parallel code in the case that a part of an array is written by other threads that do not execute the parallel loop. As another example, in the case that all of the array elements are written by a parallel loop, a result may be wrong if multiple threads perform data transfer for the whole array from the GPU to CPU. This is because this transfer may update array elements that were not updated by the GPU and were updated by the CPU.


The preceding can be illustrated with respect to the following sample pseudocode program:

















public void Test extends Thread {









int X[ ] = new int[1000];



int id;



Test(int id) { this.id = id; }



void test(int a[ ]) {









if (id >= 0)









IntStream.rangeClosed(0, 100).









parallel( ).forEach(i −> {









a[3*i + id] += i; } ); }









else a[2] = 2;









void run( ) { test(X); }









public static void main(String[ ] a) {









Test t0 = new Test(0);



Test t1 = new Test(1);



Test t2 = new Test(−1);



t0.start( ); t1.start( ); t2.start( );



...









}









}










As can be determined relative to the preceding pseudocode, a problem exists in how to correctly generate parallel code in the case that a part of an array is written by other threads that do not execute the parallel loop (t2 in a sample pseudocode program).


As can also be determined relative to the preceding pseudocode, another problem exists in how to generate code for GPU and CPU for a parallel loop, which is executed by multiple threads with write operations to an array, in the case that each thread writes data into contiguous array elements (t0 and t1 in a sample pseudocode program).


SUMMARY

According to an aspect of the present invention, a computer-implemented method is provided for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU. The method includes compiling the parallel loop by (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time. The method further includes determining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop.


According to another aspect of the present invention, a computer program product is provided for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU. The computer program product includes a non-transitory computer readable storage medium having program instructions embodied therewith. The program instructions are executable by a computer to cause the computer to perform a method. The method includes compiling the parallel loop by (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time. The method further includes determining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop.


According to yet another aspect of the present invention, a computer processing system is provided for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array. The computer processing system includes a GPU and a CPU. The GPU and the CPU are configured to compile the parallel loop by (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time. The GPU and the CPU are further configured to determine an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop.


According to still another aspect of the present invention, a computer-implemented method is provided for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU. The method includes compiling the parallel loop by (i) checking, based on a range of array elements to be written with respect to any of an index of the parallel loop, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time based on the index of the parallel loop. The method further includes determining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop. The GPU code and the CPU code are generated to be executable in parallel when regions of the array to be written are non-contiguous.


According to still yet another aspect of the present invention, a computer program product is provided for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU. The computer program product includes a non-transitory computer readable storage medium having program instructions embodied therewith. The program instructions are executable by a computer to cause the computer to perform a method. The method includes compiling the parallel loop by (i) checking, based on a range of array elements to be written with respect to any of an index of the parallel loop, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time based on the index of the parallel loop. The method further includes determining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop. The GPU code and the CPU code are generated to be executable in parallel when regions of the array to be written are non-contiguous.


These and other features and advantages will become apparent from the following detailed description of illustrative embodiments thereof, which is to be read in connection with the accompanying drawings.





BRIEF DESCRIPTION OF THE DRAWINGS

The following description will provide details of preferred embodiments with reference to the following figures wherein:



FIG. 1 shows an exemplary processing system to which the present invention may be applied, in accordance with an embodiment of the present invention;



FIGS. 2-5 show an exemplary method for compiling a parallel loop with a complex access pattern for writing an array for a Graphics Processing Unit (GPU) and a Central Processing Unit (CPU), in accordance with an embodiment of the present invention;



FIG. 6 shows an exemplary source program to which the present invention can be applied, in accordance with an embodiment of the present invention;



FIG. 7 shows exemplary pseudocode for a CPU based on the source program of FIG. 6, in accordance with an embodiment of the present invention;



FIG. 8 shows exemplary pseudocode for a GPU based on the source program of FIG. 6, in accordance with an embodiment of the present invention;



FIG. 9 shows another exemplary source program to which the present invention can be applied, in accordance with an embodiment of the present invention;



FIG. 10 shows exemplary pseudocode for a CPU based on the source program of FIG. 9, in accordance with an embodiment of the present invention;



FIG. 11 shows exemplary pseudocode for a GPU based on the source program of FIG. 9, in accordance with an embodiment of the present invention;



FIG. 12 shows yet another exemplary source program to which the present invention can be applied, in accordance with an embodiment of the present invention;



FIG. 13 shows exemplary pseudocode for a CPU based on the source program of FIG. 12, in accordance with an embodiment of the present invention;



FIG. 14 shows exemplary pseudocode for a GPU based on the source program of FIG. 12, in accordance with an embodiment of the present invention;



FIG. 15 shows exemplary pseudocode having a loop for a red black SOR method, to which the present invention can be applied, in accordance with an embodiment of the present invention;



FIG. 16 shows exemplary pseudocode having a loop for a triangular array, to which the present invention can be applied, in accordance with an embodiment of the present invention;



FIG. 17 shows exemplary pseudocode having a loop with a complicated loop body, to which the present invention can be applied, in accordance with an embodiment of the present invention; and



FIG. 18 shows exemplary pseudocode having another loop with another complicated loop body, to which the present invention can be applied, in accordance with an embodiment of the present invention.





DETAILED DESCRIPTION

The present invention is directed to compiling a parallel loop with a complex access pattern for writing an array for a Graphics Processing Unit (GPU) and a Central Processing Unit (CPU).


Based on a range of elements to be written and an access order to elements in a parallel loop, the present invention decides the best approach to generate CPU and GPU code.



FIG. 1 shows an exemplary processing system 100 to which the invention principles may be applied, in accordance with an embodiment of the present invention. The processing system 100 includes at least one Central Processing Unit (CPU) 104 and at least one Graphics Processing Unit (GPU) 177 operatively coupled to other components via a system bus 102. A cache 106, a Read Only Memory (ROM) 108, a Random Access Memory (RAM) 110, an input/output (I/O) adapter 120, a sound adapter 130, a network adapter 140, a user interface adapter 150, and a display adapter 160, are operatively coupled to the system bus 102.


A first storage device 122 and a second storage device 124 are operatively coupled to system bus 102 by the I/O adapter 120. The storage devices 122 and 124 can be any of a disk storage device (e.g., a magnetic or optical disk storage device), a solid state magnetic device, and so forth. The storage devices 122 and 124 can be the same type of storage device or different types of storage devices.


A speaker 132 is operatively coupled to system bus 102 by the sound adapter 130. A transceiver 142 is operatively coupled to system bus 102 by network adapter 140. A display device 162 is operatively coupled to system bus 102 by display adapter 160.


A first user input device 152, a second user input device 154, and a third user input device 156 are operatively coupled to system bus 102 by user interface adapter 150. The user input devices 152, 154, and 156 can be any of a keyboard, a mouse, a keypad, an image capture device, a motion sensing device, a microphone, a device incorporating the functionality of at least two of the preceding devices, and so forth. Of course, other types of input devices can also be used, while maintaining the spirit of the present invention. The user input devices 152, 154, and 156 can be the same type of user input device or different types of user input devices. The user input devices 152, 154, and 156 are used to input and output information to and from system 100.


Of course, the processing system 100 may also include other elements (not shown), as readily contemplated by one of skill in the art, as well as omit certain elements. For example, various other input devices and/or output devices can be included in processing system 100, depending upon the particular implementation of the same, as readily understood by one of ordinary skill in the art. For example, various types of wireless and/or wired input and/or output devices can be used. Moreover, additional processors, controllers, memories, and so forth, in various configurations can also be utilized as readily appreciated by one of ordinary skill in the art. These and other variations of the processing system 100 are readily contemplated by one of ordinary skill in the art given the teachings of the present invention provided herein.


It is to be appreciated that processing system 100 may perform at least part of the method described herein including, for example, at least part of method 200 of FIGS. 2-5.



FIG. 2 shows an exemplary method 200 for compiling a parallel loop with a complex access pattern for writing an array for a Graphics Processing Unit (GPU) and a Central Processing Unit (CPU), in accordance with an embodiment of the present invention.


At step 210, check whether a parallel loop can update all of the elements of an array in a left hand side of an assignment, and log a result of the check performed at step 210 as true or false.


As an example regarding step 210, a true would result when (1) a range of elements of an array is equal to a range of a loop index to be updated, (2) a subscript expression of an array is equal to a loop index, and (3) an assignment to an array is always executed in a loop iteration. An example of the preceding is as follows: “for (i=0; I<a.length; i++) {a[i]+=i:}.


As another example regarding step 210, a true would result when (1) a range of elements of an array are included by all of the values of an index array (e.g., idx[ ]) by using abstract interpretation, annotation, runtime inspection, and/or so forth, (2) a subscription expression of an index array is equal to an loop index, and (3) an assignment to an array is always executed in a loop iteration. An example of the preceding is as follows: “for (i=0; I<a.length; i++) {a[idx[i]]+=i:}.


At step 220, check whether access orders, whose elements of all of arrays that a parallel loop reads from or writes to, are known at compilation time, and log a result of the check performed at step 220 as true or false.


As an example regarding step 220, a true would result when (1) a subscription expression of an array consist of a loop index and loop invariant variable that can be evaluated at compilation time, and (2) an assignment to an array is always executed in a loop iteration. An example of the preceding is as follows: “for (i=0; I<a.length/2-1; i++) {a[2*I+1]+=I}:”.


At step 231, determine whether the checks of steps 210 and 220 both resulted in a true. If so, then proceed to step 242. Otherwise, proceed to step 232.


At step 232, determine whether the checks of steps 210 and 220 both resulted in a false. If so, then proceed to step 252. Otherwise, proceed to step 233


At step 233, determine whether the check of step 210 resulted in a true and the check of step 220 resulted in a false. If so, then proceed to step 262. Otherwise, proceed to step 272.


At step 242 (for data transfer from CPU to GPU), transfer only the array elements known to be accessed in a GPU kernel at compilation time. After finishing the transfer, launch the GPU kernel.


At step 243 (for data transfer from GPU to CPU), transfer, to a temporary array on a CPU thread, only the array elements which have been updated by a GPU kernel. Then, copy the temporary array to a result array on the CPU thread. The computation and writing its result into the result array on the CPU thread can be executed with executing the GPU kernel in parallel.


At step 252, (for data transfer from CPU to GPU), transfer, by a thread which first tries to launch a GPU kernel, all of the array elements. After finishing the transfer, launch the GPU kernel.


At step 253 (for data transfer from GPU to CPU), transfer, from a GPU thread which finished a GPU kernel to a temporary array on a CPU thread, all of the array elements. Then, copy, to a result array on the CPU thread, only the array elements which have been updated in the GPU kernel. The computation and writing its result into the result array on the CPU thread can be executed with executing the GPU kernel in parallel.


At step 262 (for data transfer from CPU to GPU), transfer all of the array elements of a CPU thread which first tries to launch a GPU kernel. After finishing the transfer, launch the GPU kernel.


At step 263 (for data transfer from GPU to CPU), transfer, to a result array on a CPU thread, all of the array elements of a thread which finished a GPU kernel. After finishing the transfer the computation and writing its result into the result array on the CPU thread can be started.


At step 272 (for data transfer from CPU to GPU), transfer only the array elements known to be accessed in a GPU kernel at compilation time. After finishing the transfer, launch the GPU kernel.


At step 273 (for data transfer from GPU to CPU), transfer, to a temporary array on a CPU thread, only the array elements which have been updated by a GPU kernel. Then, copy the temporary array to a result array on the CPU thread. The computation and writing its result into the result array on the CPU thread can be executed with executing the GPU kernel in parallel.



FIG. 6 shows an exemplary source program 600 to which the present invention can be applied, in accordance with an embodiment of the present invention. The source program 600 involves a parallel loop that updates all of the array elements in a left hand side of an assignment, and access orders of those arrays are known at compilation time.



FIG. 7 shows exemplary pseudocode 700 for a CPU based on source program 600 of FIG. 6, in accordance with an embodiment of the present invention.



FIG. 8 shows exemplary pseudocode 800 for a GPU based on source program 600 of FIG. 6, in accordance with an embodiment of the present invention.



FIG. 9 shows another exemplary source program 900 to which the present invention can be applied, in accordance with an embodiment of the present invention. The source program 900 involves a parallel loop that updates all of the array elements in a left hand side of an assignment, and access orders of those arrays are unknown at compilation time.



FIG. 10 shows exemplary pseudocode 1000 for a CPU based on source program 900 of FIG. 9, in accordance with an embodiment of the present invention.



FIG. 11 shows exemplary pseudocode 1100 for a GPU based on source program 900 of FIG. 9, in accordance with an embodiment of the present invention.



FIG. 12 shows another exemplary source program 1200 to which the present invention can be applied, in accordance with an embodiment of the present invention. The source program 1200 involves a parallel loop that may not update all of the array elements in a left hand side of an assignment, and access orders of those arrays are unknown at compilation time.



FIG. 13 shows exemplary pseudocode 1300 for a CPU based on source program 1200 of FIG. 12, in accordance with an embodiment of the present invention.



FIG. 14 shows exemplary pseudocode 1400 for a GPU based on source program 1200 of FIG. 12, in accordance with an embodiment of the present invention.


In an embodiment, coverage of target programs of a compiler for GPU is expanded. For example, IBM Java 8 SR3 can compile only a parallel loop in the case that an array in a left hand side of an assignment has an subscript expression such as a[i] and is not within an “if” statement. The present invention allows a compiler to compile more complicated types of parallel loops.



FIG. 15 shows exemplary pseudocode 1500 having a loop for a red black SOR method, to which the present invention can be applied, in accordance with an embodiment of the present invention.



FIG. 16 shows exemplary pseudocode 1600 having a loop for a triangular array, to which the present invention can be applied, in accordance with an embodiment of the present invention.



FIG. 17 shows exemplary pseudocode 1700 having a loop with a complicated loop body, to which the present invention can be applied, in accordance with an embodiment of the present invention.



FIG. 18 shows exemplary pseudocode 1800 having another loop with another complicated loop body, to which the present invention can be applied, in accordance with an embodiment of the present invention.


The present invention may be a system, a method, and/or a computer program product at any possible technical detail level of integration. The computer program product may include a computer readable storage medium (or media) having computer readable program instructions thereon for causing a processor to carry out aspects of the present invention.


The computer readable storage medium can be a tangible device that can retain and store instructions for use by an instruction execution device. The computer readable storage medium may be, for example, but is not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any suitable combination of the foregoing. A non-exhaustive list of more specific examples of the computer readable storage medium includes the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a static random access memory (SRAM), a portable compact disc read-only memory (CD-ROM), a digital versatile disk (DVD), a memory stick, a floppy disk, a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon, and any suitable combination of the foregoing. A computer readable storage medium, as used herein, is not to be construed as being transitory signals per se, such as radio waves or other freely propagating electromagnetic waves, electromagnetic waves propagating through a waveguide or other transmission media (e.g., light pulses passing through a fiber-optic cable), or electrical signals transmitted through a wire.


Computer readable program instructions described herein can be downloaded to respective computing/processing devices from a computer readable storage medium or to an external computer or external storage device via a network, for example, the Internet, a local area network, a wide area network and/or a wireless network. The network may comprise copper transmission cables, optical transmission fibers, wireless transmission, routers, firewalls, switches, gateway computers and/or edge servers. A network adapter card or network interface in each computing/processing device receives computer readable program instructions from the network and forwards the computer readable program instructions for storage in a computer readable storage medium within the respective computing/processing device.


Computer readable program instructions for carrying out operations of the present invention may be assembler instructions, instruction-set-architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, firmware instructions, state-setting data, or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C++ or the like, and conventional procedural programming languages, such as the “C” programming language or similar programming languages. The computer readable program instructions may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the latter scenario, the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider). In some embodiments, electronic circuitry including, for example, programmable logic circuitry, field-programmable gate arrays (FPGA), or programmable logic arrays (PLA) may execute the computer readable program instructions by utilizing state information of the computer readable program instructions to personalize the electronic circuitry, in order to perform aspects of the present invention.


Aspects of the present invention are described herein with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the invention. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer readable program instructions.


These computer readable program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks. These computer readable program instructions may also be stored in a computer readable storage medium that can direct a computer, a programmable data processing apparatus, and/or other devices to function in a particular manner, such that the computer readable storage medium having instructions stored therein comprises an article of manufacture including instructions which implement aspects of the function/act specified in the flowchart and/or block diagram block or blocks.


The computer readable program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other device to cause a series of operational steps to be performed on the computer, other programmable apparatus or other device to produce a computer implemented process, such that the instructions which execute on the computer, other programmable apparatus, or other device implement the functions/acts specified in the flowchart and/or block diagram block or blocks.


The flowchart and block diagrams in the Figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods, and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s). In some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts or carry out combinations of special purpose hardware and computer instructions.


Reference in the specification to “one embodiment” or “an embodiment” of the present invention, as well as other variations thereof, means that a particular feature, structure, characteristic, and so forth described in connection with the embodiment is included in at least one embodiment of the present invention. Thus, the appearances of the phrase “in one embodiment” or “in an embodiment”, as well any other variations, appearing in various places throughout the specification are not necessarily all referring to the same embodiment.


It is to be appreciated that the use of any of the following “/”, “and/or”, and “at least one of”, for example, in the cases of “A/B”, “A and/or B” and “at least one of A and B”, is intended to encompass the selection of the first listed option (A) only, or the selection of the second listed option (B) only, or the selection of both options (A and B). As a further example, in the cases of “A, B, and/or C” and “at least one of A, B, and C”, such phrasing is intended to encompass the selection of the first listed option (A) only, or the selection of the second listed option (B) only, or the selection of the third listed option (C) only, or the selection of the first and the second listed options (A and B) only, or the selection of the first and third listed options (A and C) only, or the selection of the second and third listed options (B and C) only, or the selection of all three options (A and B and C). This may be extended, as readily apparent by one of ordinary skill in this and related arts, for as many items listed.


Having described preferred embodiments of a system and method (which are intended to be illustrative and not limiting), it is noted that modifications and variations can be made by persons skilled in the art in light of the above teachings. It is therefore to be understood that changes may be made in the particular embodiments disclosed which are within the scope of the invention as outlined by the appended claims. Having thus described aspects of the invention, with the details and particularity required by the patent laws,

Claims
  • 1. A computer program product for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU, the computer program product comprising a non-transitory computer readable storage medium having program instructions embodied therewith, the program instructions executable by a computer to cause the computer to perform a method comprising: compiling the parallel loop by (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time; anddetermining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop,wherein (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements comprises:checking whether the range of array elements to be written is equal to a range of an index of the parallel loop to be updated;checking whether a subscript expression of the array is equal to the index of the loop array to be updated; andchecking whether an assignment to the array is always executed in an iteration of the parallel loop.
  • 2. The computer program product of claim 1, wherein the GPU code and the CPU code are generated to be executable in parallel when regions of the array to be written are non-contiguous.
  • 3. The computer program product of claim 1, wherein (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements comprises: checking whether the range of array elements to be written are included in values of an index array;checking whether a subscript expression of the index array is equal to an index of the parallel loop to be updated; andchecking whether an assignment to the array is always executed in an iteration of the parallel loop.
  • 4. The computer program product of claim 1, wherein (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time comprises: checking whether a subscript expression of the array consists of an index of the parallel loop and a loop invariant variable that can be evaluated at compilation time; andchecking whether an assignment to the array is always executed in an iteration of the parallel loop.
  • 5. The computer program product of claim 1, wherein for (a) a true result in said compiling step for both the (i) checking and the (ii) checking, and(b) a current data transfer from the CPU to the GPU,said determining step determines the approach to include: performing a transfer of only the array elements known to have been accessed in a GPU kernel at compilation time; andlaunching the GPU kernel, after completing the transfer.
  • 6. The computer program product of claim 1, wherein for (a) a true result in said compiling step for both the (i) checking and the (ii) checking, and(b) a current data transfer from the GPU to the CPU,said determining step determines the approach to include: transferring, to a temporary array on a CPU thread, only the array elements which have been updated by a GPU kernel; andcopying the temporary array to a result array on the CPU thread.
  • 7. The computer program product of claim 1, wherein for (a) a false result in said compiling step for both the (i) checking and the (ii) checking, and(b) a current data transfer from the CPU to the GPU,said determining step determines the approach to include: performing, by a CPU thread which first tries to launch a GPU kernel, a transfer of all of the array elements; andlaunching the GPU kernel, after completing the transfer.
  • 8. The computer program product of claim 1, wherein for (a) a false result in said compiling step for both the (i) checking and the (ii) checking, and(b) a current data transfer from the GPU to the CPU,said determining step determines the approach to include: transferring, from a GPU thread which finished a GPU kernel to a temporary array on a CPU thread, all of the array elements; andcopying, to a result array on the CPU thread, only the array elements which have been updated in the GPU kernel.
  • 9. The computer program product of claim 1, wherein for (a) a true result in said compiling step for the (i) checking and a false result in said compiling step for the ii) checking, and(b) a current data transfer from the CPU to the GPU,said determining step determines the approach to include: performing a transfer, by a thread which first tries to launch a GPU kernel, of all of the array elements; andlaunching the GPU kernel, after completing the transfer.
  • 10. The computer program product of claim 1, wherein for (a) a true result in said compiling step for the (i) checking and a false result in said compiling step for the ii) checking, and(b) a current data transfer from the GPU to the CPU,said determining step determines the approach to include: performing a transfer, from a GPU thread which finished a GPU kernel to a result array on a CPU thread, of all of the array elements;starting a computation and a writing of a transfer result into the result array on the CPU thread, after completing the transfer.
  • 11. The computer program product of claim 1, wherein for (a) a false result in said compiling step for the (i) checking and a true result in said compiling step for the ii) checking, and(b) a current data transfer from the CPU to the GPU,said determining step determines the approach to include: performing a transfer of only the array elements known to be accessed in a GPU kernel at compilation time; andlaunching the GPU kernel, after completing the transfer.
  • 12. The computer program product of claim 1, wherein for (a) a false result in said compiling step for the (i) checking and a true result in said compiling step for the ii) checking, and(b) a current data transfer from the GPU to the CPU,said determining step determines the approach to include: transferring, to a temporary array on a CPU thread, only the array elements which have been updated by a GPU kernel; andcopying the temporary array to a result array on the CPU thread.
  • 13. A computer processing system for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array, the computer processing system comprising: a GPU and a CPU, configured to: compile the parallel loop by (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time; anddetermine an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop,wherein (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements comprises:checking whether the range of array elements to be written is equal to a range of an index of the parallel loop to be updated;checking whether a subscript expression of the array is equal to the index of the loop array to be updated; andchecking whether an assignment to the array is always executed in an iteration of the parallel loop.
  • 14. The computer processing system of claim 13, wherein the GPU code and the CPU code are generated to be executable in parallel when regions of the array to be written are non-contiguous.
  • 15. A computer program product for compiling a parallel loop and generating Graphics Processing Unit (GPU) code and Central Processing Unit (CPU) code for writing an array for the GPU and the CPU, the computer program product comprising a non-transitory computer readable storage medium having program instructions embodied therewith, the program instructions executable by a computer to cause the computer to perform a method comprising: compiling the parallel loop by (i) checking, based on a range of array elements to be written with respect to any of an index of the parallel loop, whether the parallel loop can update all of the array elements and (ii) checking whether an access order of the array elements that the parallel loop reads or writes is known at compilation time based on the index of the parallel loop; anddetermining an approach, from among a plurality of available approaches, to generate the CPU code and the GPU code based on (i) the range of the array elements to be written and (ii) the access order to the array elements in the parallel loop,wherein the GPU code and the CPU code are generated to be executable in parallel when regions of the array to be written are non-contiguous,wherein (i) checking, based on a range of array elements to be written, whether the parallel loop can update all of the array elements comprises:checking whether the range of array elements to be written is equal to a range of an index of the parallel loop to be updated;checking whether a subscript expression of the array is equal to the index of the loop array to be updated; andchecking whether an assignment to the array is always executed in an iteration of the parallel loop.
US Referenced Citations (36)
Number Name Date Kind
4227194 Herman Oct 1980 A
8549500 Stefansson Oct 2013 B2
8769510 Martin Jul 2014 B2
8930926 Bastoul Jan 2015 B2
9361079 Grover et al. Jun 2016 B2
9715386 Gonion Jul 2017 B2
9733914 Yi Aug 2017 B2
20070050603 Vorbach Mar 2007 A1
20070294512 Crutchfield Dec 2007 A1
20070294663 McGuire Dec 2007 A1
20070294665 Papakipos Dec 2007 A1
20070294666 Papakipos Dec 2007 A1
20070294671 Demetriou Dec 2007 A1
20070294680 Papakipos Dec 2007 A1
20070294681 Tuck Dec 2007 A1
20070294682 Demetriou Dec 2007 A1
20070294696 Papakipos Dec 2007 A1
20080005547 Papakipos Jan 2008 A1
20080229298 O'Brien Sep 2008 A1
20100153654 Vorbach Jun 2010 A1
20100218196 Leung Aug 2010 A1
20100250854 Ju Sep 2010 A1
20100306733 Bordelon Dec 2010 A1
20100306736 Bordelon Dec 2010 A1
20100306752 Bordelon Dec 2010 A1
20100306753 Yi Dec 2010 A1
20110035737 Stefansson Feb 2011 A1
20110238948 Vorbach Sep 2011 A1
20110252411 Martin Oct 2011 A1
20120166765 Gonion Jun 2012 A1
20160011857 Grover Jan 2016 A1
20160267032 Rigetti Sep 2016 A1
20160357529 Tsujimori Dec 2016 A1
20160364216 Howes Dec 2016 A1
20170154088 Sherman Jun 2017 A1
20170154089 Sherman Jun 2017 A1
Non-Patent Literature Citations (5)
Entry
Larry Carter et al., Languages and Compilers for Parallel Computing, Aug. 1999, [Retrieved on May 1, 2019]. Retrieved from the internet: 511 Pages (1-500) (Year: 1999).
Minyi Guo et al., Symbolic Communication Set Generation for Irregular Parallel Applications, 2003, [Retrieved on May 1, 2019]. Retrieved from the internet: 16 Pages (199-214) (Year: 2003).
Samadi, “Paragon: Collaborative Speculative Loop Execution on GPU and CPU”, GPGPU-5, Mar. 2012, 10 pages.
Garg, Rahul, “A Tool Kit for building Dynamic Compilers for Array-Based Languages Targeting CPUS and GPUS”, School of Computer Science, McGill University, Apr. 2015, 189 pages.
List of IBM Patents or Patent Applications Treated as Related dated Nov. 9, 2017, 2 pages.
Related Publications (1)
Number Date Country
20180253290 A1 Sep 2018 US
Continuations (1)
Number Date Country
Parent 15448032 Mar 2017 US
Child 15808615 US