Skip to content
  1. Jul 18, 2016
    • Tobias Grosser's avatar
      GPGPU: collect array references · b9fc860a
      Tobias Grosser authored
      Initialize the list of references to a GPU array to ensure that the arrays that
      need to be passed to kernel calls are computed correctly.  Furthermore, the very
      same information is also necessary to compute synchronization correctly. As the
      functionality to compute these references is already available, what is left for
      us to do is only to connect the necessary functionality to compute array
      reference information.
      
      llvm-svn: 275798
      b9fc860a
    • Tobias Grosser's avatar
      test: Add missing 'REQUIRES' line · 05aad8db
      Tobias Grosser authored
      llvm-svn: 275784
      05aad8db
    • Tobias Grosser's avatar
      GPGPU: Create host control flow · 38fc0aed
      Tobias Grosser authored
      Create LLVM-IR for all host-side control flow of a given GPU AST. We implement
      this by introducing a new GPUNodeBuilder class derived from IslNodeBuilder.  The
      IslNodeBuilder will take care of generating all general-purpose ast nodes, but
      we provide our own createUser implementation to handle the different GPU
      specific user statements. For now, we just skip any user statement and only
      generate a host-code sceleton, but in subsequent commits we will add handling of
      normal ScopStmt's performing computations, kernel calls, as well as host-device
      data transfers. We will also introduce run-time check generation and LICM in
      subsequent commits.
      
      llvm-svn: 275783
      38fc0aed
  2. Jul 15, 2016
    • Tobias Grosser's avatar
      GPGPU: Format statements scheduled on the host ourselves · 20251734
      Tobias Grosser authored
      Otherwise ppcg would try to call into pet functionality that this not available,
      which obviously will cause trouble. As we can easily print these statements
      ourselves, we just do so.
      
      llvm-svn: 275579
      20251734
    • Tobias Grosser's avatar
      GPGPU: Use schedule whole components for scheduler · 2341fe9e
      Tobias Grosser authored
      This option increases the scalability of the scheduler and allows us to remove
      the 'gisting' workaround we introduced in r275565 to handle a more complicated
      test case. Another benefit of using this option is also that the generated
      code looks a lot more streamlined.
      
      Thanks to Sven Verdoolaege for reminding me of this option.
      
      llvm-svn: 275573
      2341fe9e
    • Tobias Grosser's avatar
      GPGPU: Drop domain constraints from flow dependences · e4725437
      Tobias Grosser authored
      This works around a shortcoming of the isl scheduler, which even for some
      smaller test cases does not terminate in case domain constraints are part
      of the flow dependences.
      
      llvm-svn: 275565
      e4725437
    • Tobias Grosser's avatar
      GPGPU: Test scalar/array types i1/i3/i8/i32/i60/i64/i80/i120/i128/i3000 · 225dca78
      Tobias Grosser authored
      Arrays with integer base type are similar to arrays with floating point types,
      with the exception that LLVM's integer types can take some odd values. We
      add a selection of different values to make sure we correctly round these
      types when necessary.
      
      References to scalar integer types are special, as we currently do not model
      these types as array accesses as they are considered 'synthesizable' by Polly.
      As a result, we do not generate explicit data-transfers for them, but instead
      will need to keep track of all references to 'synthesizable' values separately.
      
      At the current stage, this is only visible by missing host-to-device
      data-transfer calls. In the future, we will also require special code generation
      strategies.
      
      llvm-svn: 275551
      225dca78
    • Tobias Grosser's avatar
      GPGPU: Test scalar parameters of type half/float/double/fp128/x86_fp80/ppc_fp128 · 8d9dcfc5
      Tobias Grosser authored
      We currently only test that the code structure we generate for these scalar
      parameters is correct and we add these types to make sure later code generation
      additions have sufficient test coverage.
      
      In case some of these types cannot be mapped due to missing hardware support
      on the GPU some of these test cases may need to be updated later on.
      
      llvm-svn: 275548
      8d9dcfc5
    • Tobias Grosser's avatar
      GPGPU: Make sure scops with more than one array work · 2d010daf
      Tobias Grosser authored
      We use this opportunity to add a test case containing a scalar parameter.
      
      llvm-svn: 275547
      2d010daf
    • Tobias Grosser's avatar
      GPGPU: Model array access information · 60f63b49
      Tobias Grosser authored
      This allows us to derive host-device and device-host data-transfers.
      
      llvm-svn: 275535
      60f63b49
    • Tobias Grosser's avatar
      GPGPU: Use CHECK-NEXT to harden test cases · eeb8a95a
      Tobias Grosser authored
      A sequence of CHECK lines allows additional statements to appear in the
      output of the tested program without any test failures appearing. As we do
      not want this to happen, switch this test case to use CHECK-NEXT.
      
      llvm-svn: 275534
      eeb8a95a
  3. Jul 14, 2016
    • Tobias Grosser's avatar
      GPGPU: Generate an AST for the GPU-mapped schedule · 69b46751
      Tobias Grosser authored
      For this we need to provide an explicit list of statements as they occur in
      the polly::Scop to ppcg.
      
      We also setup basic AST printing facilities to facilitate debugging. To allow
      code reuse some (minor) changes in ppcg are have been necessary.
      
      llvm-svn: 275436
      69b46751
    • Tobias Grosser's avatar
      GPGPU: Use a tile size of 32 by default · 4eaedde5
      Tobias Grosser authored
      The tile size was previously uninitialized. As a result, it was often zero (aka.
      no tiling), which is not what we want in general. More importantly, there was
      the risk for arbitrary tile sizes to be choosen, which we did not observe, but
      which still is highly problematic.
      
      llvm-svn: 275418
      4eaedde5
    • Tobias Grosser's avatar
      GPGPU: Map initial schedule to GPU schedule · aef5196f
      Tobias Grosser authored
      This change now applies ppcg's GPU mapping on our initial schedule. For this
      to work, we need to also initialize the set of all names (isl_ids) used in
      the scop as well as the program context.
      
      llvm-svn: 275396
      aef5196f
    • Tobias Grosser's avatar
      GPGPU: compute new schedule from polly scop · f384594d
      Tobias Grosser authored
      To do so we copy the necessary information to compute an initial schedule from
      polly::Scop to ppcg's scop. Most of the necessary information is directly
      available and only needs to be passed on to ppcg, with the exception of 'tagged'
      access relations, access relations that additionally carry information about
      which memory access an access relation originates from.
      
      We could possibly perform the construction of tagged accesses as part of
      ScopInfo, but as this format is currently specific to ppcg we do not do this
      yet, but keep this functionality local to our GPU code generation.
      
      After the scop has been initialized, we compute data dependences and ask ppcg to
      compute an initial schedule. Some of this functionality is already available in
      polly::DependenceInfo and polly::ScheduleOptimizer, but to keep differences
      to ppcg small we use ppcg's functionality here. We may later investiage if
      a closer integration of these tools makes sense.
      
      llvm-svn: 275390
      f384594d
    • Tobias Grosser's avatar
      GPGPU: create default initialized PPCG scop and gpu program · e938517e
      Tobias Grosser authored
      At this stage, we do not yet modify the IR but just generate a default
      initialized ppcg_scop and gpu_prog and free both immediately. Both will later be
      filled with data from the polly::Scop and are needed to use PPCG for GPU
      schedule generation. This commit does not yet perform any GPU code generation,
      but ensures that the basic infrastructure has been put in place.
      
      We also add a simple test case to ensure the new code is run and use this
      opportunity to verify that GPU_CODEGEN tests are only run if GPU code generation
      has been enabled in cmake.
      
      llvm-svn: 275389
      e938517e
Loading