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
      GPGPU: Pull implementation out of class definition · 1fb9b64d
      Tobias Grosser authored
      This will allow us to see the full class definition even after we add
      non-trivial implementations of the different member functions.
      
      llvm-svn: 275797
      1fb9b64d
    • 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 16, 2016
    • Tobias Grosser's avatar
      GPGPU: Abort if any dummy function is called · cda19c23
      Tobias Grosser authored
      This ensures that accidental calls to these functions will break loadly instead
      of corrupting the stack with invalid return values.
      
      These functions have been introduced earlier as replacement of pet and parts of
      ppcg which we will never use and consequently have not been imported or compiled
      into Polly.
      
      llvm-svn: 275680
      cda19c23
  3. 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: Add memory reference tag ids to tagged accesses · 6293ba69
      Tobias Grosser authored
      It seems we forgot to actually add the memory access ids to the tagged accesses,
      but instead just tagged the accesses with empty isl_ids. This issue was found
      by inspection and without code generation it is difficult to test just by
      itself. We fix it for now without test case and expect our code generation
      tests to cover this later on.
      
      llvm-svn: 275557
      6293ba69
    • Tobias Grosser's avatar
      GPGPU: Do not check for hidden declarations · cfa0361d
      Tobias Grosser authored
      We do not have them in Polly and the code to check for them is directly
      referring to pet data structures which we do not have available.
      
      This commit avoids undefined behavior. As such issues are difficult to
      reproduce, this commit comes without a test case.
      
      llvm-svn: 275553
      cfa0361d
    • 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: Free options to avoid memory leak · b307ed4d
      Tobias Grosser authored
      ppcg does not free the option structs for us. To avoid a memory leak we do this
      ourselves.
      
      llvm-svn: 275546
      b307ed4d
    • Tobias Grosser's avatar
      GPGPU: Shorten ppcg include paths to avoid conflict with cuda.h · a56f8f8e
      Tobias Grosser authored
      Instead of directly linking to ppcg's main source directory, we link to the
      parent director. This allows us to access ppcg's include files with
      'ppcg/cuda.h' and avoids a conflict with NVIDIA's cuda.h header.
      
      Also drop an include directory that is currently not used.
      
      llvm-svn: 275536
      a56f8f8e
    • 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
  4. 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: Add dummy implementation for ast expression construction · 60c60025
      Tobias Grosser authored
      Instead of calling to a pet function that does not return anything, we pass
      our own dummy implementation to ppcg that always returns a nullptr. This
      ensures that the list of ast expressions always contains a nullptr and we do
      not accidentally free a random (uninitalized) pointer. This resolves the
      last valgrind warning we see.
      
      We provide an implementation for this function, when the generated AST
      expressions can be used and consequently can be tested.
      
      llvm-svn: 275435
      60c60025
    • 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
    • Benjamin Kramer's avatar
      Upgrade all the .arcconfigs to https. · 56a46bc6
      Benjamin Kramer authored
      llvm-svn: 275409
      56a46bc6
    • Tobias Grosser's avatar
      Fix formatting · bd81a7ee
      Tobias Grosser authored
      llvm-svn: 275397
      bd81a7ee
    • 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: Do not dump schedule by default · 681bd568
      Tobias Grosser authored
      llvm-svn: 275395
      681bd568
    • Roman Gareev's avatar
    • 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
  5. Jul 13, 2016
    • Tobias Grosser's avatar
      PPCGCodegen: Support compilation without GPU support · 562d3aa8
      Tobias Grosser authored
      llvm-svn: 275310
      562d3aa8
    • Tobias Grosser's avatar
      Add accelerator code generation pass skeleton · 9dfe4e7c
      Tobias Grosser authored
      Add a new pass to serve as basis for automatic accelerator mapping in Polly.
      The pass structure and the analyses preserved are copied from
      CodeGeneration.cpp, as we will rely on IslNodeBuilder and IslExprBuilder for
      LLVM-IR code generation.
      
      Polly's accelerator code generation is enabled with -polly-target=gpu
      
      I would like to use this commit as opportunity to thank Yabin Hu for his work in
      the context of two Google summer of code projects during which he implemented
      initial prototypes of the Polly accelerator code generation -- in parts this
      code is already available in todays Polly (e.g., tools/GPURuntime). More will
      come as part of the upcoming Polly ACC changes.
      
      Reviewers: Meinersbur
      
      Subscribers: pollydev, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D22036
      
      llvm-svn: 275275
      9dfe4e7c
    • Tobias Grosser's avatar
      Add ppcg-0.04 to lib/External · a041239b
      Tobias Grosser authored
      ppcg will be used to provide mapping decisions for GPU code generation.
      
      As we do not use C as input language, we do not include pet. However, we include
      pet.h from pet 82cacb71 plus a set of dummy functions to ensure ppcg links
      without problems.
      
      The version of ppcg committed is unmodified ppcg-0.04 which has been well tested
      in the context of LLVM. It does not provide an official library interface yet,
      which means that in upcoming commits we will add minor modifications to make
      necessary functionality accessible. We will aim to upstream these modifications
      after we gained enough experience with GPU generation support in Polly to
      propose a stable interface.
      
      Reviewers: Meinersbur
      
      Subscribers: pollydev, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D22033
      
      llvm-svn: 275274
      a041239b
  6. Jul 12, 2016
    • Michael Kruse's avatar
      Add CHECK line to test case. NFC. · 3b0a9934
      Michael Kruse authored
      Check not only that the compiler is not crashing, but also whether the
      probablematic part (The sequence of instructions simplified to '4') is reflected
      in the output.
      
      Thanks to Tobias for the hint.
      
      llvm-svn: 275189
      3b0a9934
    • Michael Kruse's avatar
      [SCEVAffinator] Fix assertion checking for constant divisor. · e4483643
      Michael Kruse authored
      An assertion in visitSDivInstruction() checked whether the divisor is constant
      by checking whether the argument is a ConstantInt. However, SCEVValidator allows
      the divisor to be simplified to a constant by ScalarEvolution.
      
      We synchronize the implementation of SCEVValidator and SCEVAffinator to both
      accept simplified SCEV expressions.
      
      llvm-svn: 275174
      e4483643
  7. Jul 11, 2016
  8. Jul 08, 2016
  9. Jul 07, 2016
  10. Jul 06, 2016
    • Tobias Grosser's avatar
      isl: isl-0.17.1-164-gcbba1b6 · 932ec013
      Tobias Grosser authored
      This is a regular maintenance update to ensure the latest version of isl is
      tested.
      
      Interesting Changes:
      
        - AST nodes and expressions are now printed as YAML
      
      llvm-svn: 274614
      932ec013
Loading