Skip to content
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

Werror flag #751

Closed
wants to merge 358 commits into from
Closed

Werror flag #751

wants to merge 358 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Apr 5, 2023

  1. Configuration menu
    Copy the full SHA
    8ec4ff4 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2023

  1. Add BF16 GEMM test case (#62)

    It does GEMM on two BF16 matrices and Accumulates in F32 matrix
    mshahneo authored Apr 7, 2023
    Configuration menu
    Copy the full SHA
    31eebef View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2023

  1. Merge remote-tracking branch 'upstream/main' into main

    MLIR Extensions committed Apr 8, 2023
    Configuration menu
    Copy the full SHA
    547c393 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. Configuration menu
    Copy the full SHA
    8211f38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c3fa4ff View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2023

  1. Configuration menu
    Copy the full SHA
    9a68a1f View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'upstream/main' into main

    MLIR Extensions committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    b172bb6 View commit details
    Browse the repository at this point in the history
  3. Add requirements.txt file

    gta authored and gta committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    445f5b8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d930761 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. Configuration menu
    Copy the full SHA
    08cf84c View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'upstream/main' into main

    MLIR Extensions committed Apr 17, 2023
    Configuration menu
    Copy the full SHA
    bda2a0a View commit details
    Browse the repository at this point in the history
  3. Clear requirements.txt

    XinyueLunaFan authored Apr 17, 2023
    Configuration menu
    Copy the full SHA
    1c75fd6 View commit details
    Browse the repository at this point in the history
  4. Update sdl.yml

    XinyueLunaFan authored Apr 17, 2023
    Configuration menu
    Copy the full SHA
    52a37ae View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2023

  1. Merge remote-tracking branch 'upstream/main' into main

    MLIR Extensions committed Apr 18, 2023
    Configuration menu
    Copy the full SHA
    256e333 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Merge remote-tracking branch 'upstream/main' into main

    MLIR Extensions committed Apr 20, 2023
    Configuration menu
    Copy the full SHA
    33db568 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Update sdl.yml

    XinyueLunaFan authored Apr 21, 2023
    Configuration menu
    Copy the full SHA
    6c1679b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8d6a24 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e046b11 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. Merge remote-tracking branch 'upstream/main' into main

    MLIR Extensions committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    6659a04 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2023

  1. Fix incorrect level zero install path.

    Source oneapi before configuring IMEX.
    Remove redundant SYCL_DIR.
    silee2 committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    65ddb96 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    86fba46 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2023

  1. Configuration menu
    Copy the full SHA
    459fb65 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2023

  1. Simplify CPU and GPU CI

    Assumptions:
    
    Github actions is serialized. (Running one action at a time)
    CI uses system installed cmake (not from anaconda)
    
    List of changes:
    
    Remove usage of anaconda
    Does not cache LLVM build
    Local persistent LLVM source repo is shared between cpu and gpu CI. We can do this since CI actions are serialized. cpu and gpu CI actions will pull upstream change an checkout LLVM commit id based on PR.
    LLVM/MLIR is always built from scratch
    IMEX is built along LLVM as an external project instead of a separate build. This setup cuts LLVM build time since it reduce the number of targets need to be built for LLVM.
    Single cmake target "check-imex" is invoked. This target both builds IMEX and runs test.
    silee2 committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    c1f30d1 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. Configuration menu
    Copy the full SHA
    4c94ae0 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. Configuration menu
    Copy the full SHA
    48c1c6c View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Create test.yml

    drprajap authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    faea7ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e51794c View commit details
    Browse the repository at this point in the history
  3. Update test.yml

    drprajap authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    2715b30 View commit details
    Browse the repository at this point in the history
  4. Update test.yml

    drprajap authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    73ecd8f View commit details
    Browse the repository at this point in the history
  5. Update sync.yml

    drprajap authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    5ca16fd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c48f42a View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Fix typo.

    silee2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    627031d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38ffc8b View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. Configuration menu
    Copy the full SHA
    6570e6d View commit details
    Browse the repository at this point in the history
  2. Update sync.yml

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    9b67709 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    32b0cb9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1f70ecf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    973105d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cefcff0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    50b7c5a View commit details
    Browse the repository at this point in the history
  8. Fix path issues.

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    0ec4449 View commit details
    Browse the repository at this point in the history
  9. Fix path issue.

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    a2a1834 View commit details
    Browse the repository at this point in the history
  10. Fix path issue.

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    d29f1eb View commit details
    Browse the repository at this point in the history
  11. Fix path issue.

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    8acd988 View commit details
    Browse the repository at this point in the history
  12. Fix path issue.

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    105de47 View commit details
    Browse the repository at this point in the history
  13. Use inputs for action.yml

    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    88076f8 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    e439a33 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    0289323 View commit details
    Browse the repository at this point in the history
  16. Refactor build cpu composite action

    Fix test.txt path
    Use upload-artifact v3
    Add build_gpu_v2.yml with composite action
    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    ff24597 View commit details
    Browse the repository at this point in the history
  17. Use upload-artifact@v3

    Fix tests.txt path issue
    silee2 committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    aef6006 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Configuration menu
    Copy the full SHA
    8054ed8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28c475a View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Configuration menu
    Copy the full SHA
    4d83590 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. Configuration menu
    Copy the full SHA
    2b30545 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec07742 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    02babc4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e84db88 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5f8cf61 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fd5be4e View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Configuration menu
    Copy the full SHA
    3e76a2d View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2023

  1. Configuration menu
    Copy the full SHA
    5bebf0a View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Configuration menu
    Copy the full SHA
    2a68518 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Configuration menu
    Copy the full SHA
    2f0be01 View commit details
    Browse the repository at this point in the history
  2. Add a JointMatrix test case and necessary patch

    This commit adds:
    	- A JointMatrix test case
    	- A patch that contains the updated definition of
    	  JointMatrix spec supported by IGC. Current upstream
    	  definition of JointMatrix is not supported by IGC
    	  anymore.
    mshahneo committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    565e918 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. Configuration menu
    Copy the full SHA
    5f923c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7985540 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. Configuration menu
    Copy the full SHA
    cc437f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    085d6ab View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. Configuration menu
    Copy the full SHA
    4fcc79e View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. Configuration menu
    Copy the full SHA
    1f27549 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Configuration menu
    Copy the full SHA
    60e1fa6 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. Configuration menu
    Copy the full SHA
    e23f38b View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Configuration menu
    Copy the full SHA
    96053ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c21dfe View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Configuration menu
    Copy the full SHA
    197e037 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Configuration menu
    Copy the full SHA
    236ffa1 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Configuration menu
    Copy the full SHA
    7d54212 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    434adc1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    971b616 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    aab67e1 View commit details
    Browse the repository at this point in the history
  2. Update sdl.yml

    nbpatel authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    15a6179 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Update sdl.yml

    nbpatel authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    71ff0ba View commit details
    Browse the repository at this point in the history
  2. Update sdl.yml

    nbpatel authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    de70412 View commit details
    Browse the repository at this point in the history
  3. Update sdl.yml

    nbpatel authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    7afed4f View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Update sdl.yml

    nbpatel authored Nov 10, 2023
    Configuration menu
    Copy the full SHA
    5ba2c07 View commit details
    Browse the repository at this point in the history
  2. Update sdl.yml

    nbpatel authored Nov 10, 2023
    Configuration menu
    Copy the full SHA
    6a6196f View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Configuration menu
    Copy the full SHA
    3061376 View commit details
    Browse the repository at this point in the history
  2. Update sdl.yml

    nbpatel authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    70b1d3e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f38a799 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f171a10 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Configuration menu
    Copy the full SHA
    5a2b115 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Configuration menu
    Copy the full SHA
    64d9ef0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27c83b1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    596ab16 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f0076b3 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    f3df445 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43a9a12 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d8bb4e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    47f0292 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Configuration menu
    Copy the full SHA
    1ea5b73 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f246bfd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d892450 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2023

  1. Configuration menu
    Copy the full SHA
    2a945f0 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Configuration menu
    Copy the full SHA
    6e6467a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f7d25d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a0a7b49 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Configuration menu
    Copy the full SHA
    29af00c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2482e1d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    93e990d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e472efc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    74f5865 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    dccc735 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c2e2ae0 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    525f01a View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Configuration menu
    Copy the full SHA
    9600c9f View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2023

  1. Configuration menu
    Copy the full SHA
    8ec1eb7 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Configuration menu
    Copy the full SHA
    aeba091 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Configuration menu
    Copy the full SHA
    8997fa0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa41da1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c4c926d View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. Configuration menu
    Copy the full SHA
    33622d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    81143fe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    73e6388 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e0b53a8 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Configuration menu
    Copy the full SHA
    41cfb6f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c7abc6 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Configuration menu
    Copy the full SHA
    5e98767 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    371debb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    59837b2 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. Configuration menu
    Copy the full SHA
    a99d025 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2874099 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee6a40b View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Added Dockerfile and scenario to create base image for kubernetes bas…

    …ed runners (#266)
    
    * Added Dockerfile for CI runner environment
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added scenario to rebuild runners image
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    fab3207 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    5036f00 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28f8768 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    352fa5d View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Configuration menu
    Copy the full SHA
    1914c07 View commit details
    Browse the repository at this point in the history
  2. Updated build_gpu workflow to run on glados runner (some tests fail) (#…

    …269)
    
    * Updated build_gpu and build_cpu workflows to run on glados runner
    
    Added cmake, build-essential and ninja to runner base image
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    Co-authored-by: Prajapati, Dimple <[email protected]>
    gshimansky and drprajap authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    110a5cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7fc33a7 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. [CI workflow] Do not use sudo in Dockerfile (#278)

    This is flagged as error by hadolint.
    pbchekin authored Jan 5, 2024
    Configuration menu
    Copy the full SHA
    fe4cbb3 View commit details
    Browse the repository at this point in the history
  2. Update nightly_report.yml

    drprajap authored Jan 5, 2024
    Configuration menu
    Copy the full SHA
    b883e4a View commit details
    Browse the repository at this point in the history
  3. Update sync.yml

    drprajap authored Jan 5, 2024
    Configuration menu
    Copy the full SHA
    e7f7c44 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    848d674 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    912926f View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    1322414 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    0907ffe View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Configuration menu
    Copy the full SHA
    c558411 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8054cb View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Configuration menu
    Copy the full SHA
    000f65c View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Configuration menu
    Copy the full SHA
    ee096b4 View commit details
    Browse the repository at this point in the history
  2. Fixed nightly CI scenario and switched it to using github actions reu…

    …sable workflows (#310)
    
    * Fixed Nightly CI workflow
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added secrets inherit when calling reusable workflows
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added missing rependency for sending report
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Fixed conditional operator
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Fixed runs-on for generate_report
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Removed report because it cannot be revived
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Execute cpu and gpu builds in parallel
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    0dac7b2 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    210ca6f View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Configuration menu
    Copy the full SHA
    207d79a View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Configuration menu
    Copy the full SHA
    4cdd87f View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Configuration menu
    Copy the full SHA
    2b4ddf1 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. Configuration menu
    Copy the full SHA
    bf64adf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    630ebe4 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Added Dockerfile for runner image with installed FS simulator and wor…

    …kflow to build it (#347)
    
    * Initial Dockerfile for FS simulator installation
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Updated FS simulator Dockerfile to allow simulator setup functions to work
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added workflow to build FS simulator image for github actions runners
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    d50d0a6 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. Added workflow to run GPU tests on FS simulator (#349)

    * Fixed Dockerfile after update to KMD archive
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added functionality to run FS simulator, excluded long running tests
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added workflow to run GPU tests on FS simulator
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Removed from run on PR, added installation of psutil
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Feb 13, 2024
    Configuration menu
    Copy the full SHA
    4a03225 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. Configuration menu
    Copy the full SHA
    734023b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc9d1ef View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9a6ca65 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb5b198 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Configuration menu
    Copy the full SHA
    28454e7 View commit details
    Browse the repository at this point in the history
  2. Implemented CI workflow to run GPU tests on FS simulator (#352)

    * Moved installation of psutil into docker image
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Updated FS sim workflow to use tests exit code in the end
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Removed pipefail to allow script to finish if tests fail
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added upload of simulator individual logs
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Increase test timeout to 20 minutes
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Changed timeout to 10 minutes. Added 4 tests to sim exclude.
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Added two more tests to exclude on FS sim
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5f4feea View commit details
    Browse the repository at this point in the history
  3. compilier warnings

    fschlimb committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    cf80bbf View commit details
    Browse the repository at this point in the history
  4. Revert "compilier warnings"

    This reverts commit cf80bbf.
    fschlimb committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    b8138e0 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. Configuration menu
    Copy the full SHA
    68462ce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb68f1d View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2024

  1. Add uArch interface for supported HW configs

        Changes also add XeGPU ops legalization checks as per uArch config
        in XeTileToXeGPU pass
    drprajap authored and silee2 committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    a192dbd View commit details
    Browse the repository at this point in the history
  2. Fix typo in build.yml (#683)

    Garra1980 authored and silee2 committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    1941ede View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    331d785 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    712eaf2 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Configuration menu
    Copy the full SHA
    11facc5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f7f970d View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    da25229 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    96ef2b3 View commit details
    Browse the repository at this point in the history
  2. Add git identity (#377)

    leshikus authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    c97fe8b View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Configuration menu
    Copy the full SHA
    294c6a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. Configuration menu
    Copy the full SHA
    1f721e6 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Configuration menu
    Copy the full SHA
    325326d View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Configuration menu
    Copy the full SHA
    023aa06 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    65bf801 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Configuration menu
    Copy the full SHA
    1e922fd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    217f62c View commit details
    Browse the repository at this point in the history
  3. Switch from /graphics to /gpu Intel repositories to install libraries…

    … for runners (#359)
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    2a019b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0a1fc47 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8cb380a View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Updated FS simulator 6.8.0-rc6-0.4.0 (#395)

    * Initial Dockerfile for FS simulator installation
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    * Updated simulator version to 6.8.0-rc6-0.4.0
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    
    ---------
    
    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    0f5728c View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Configuration menu
    Copy the full SHA
    4a78ea9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    036918c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    88ceddf View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Configuration menu
    Copy the full SHA
    a182f08 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2024

  1. Add FS simulator workflow to execute on every PR (#397)

    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Mar 30, 2024
    Configuration menu
    Copy the full SHA
    293c3ee View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Configuration menu
    Copy the full SHA
    f9982e1 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Configuration menu
    Copy the full SHA
    d51133c View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Configuration menu
    Copy the full SHA
    ce1c66b View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Configuration menu
    Copy the full SHA
    7137dbb View commit details
    Browse the repository at this point in the history
  2. Added restrictions for parallel tests execution (#411)

    Signed-off-by: Gregory Shimansky <[email protected]>
    gshimansky authored Apr 10, 2024
    Configuration menu
    Copy the full SHA
    c2baa0f View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Add test verbosity (#409)

    leshikus authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    43bcbfc View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    3d9f15c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    57afc6a View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2024

  1. Update sdl.yml

    nbpatel authored Apr 14, 2024
    Configuration menu
    Copy the full SHA
    88432f1 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Configuration menu
    Copy the full SHA
    d111939 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a320c6e View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    7be3da8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    255c28e View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. Update sdl.yml

    nbpatel authored Apr 17, 2024
    Configuration menu
    Copy the full SHA
    9774b1c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8491a77 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e753c25 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    a4d6227 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    97e3c9f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8126e3a View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    fbd4726 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df98da6 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Configuration menu
    Copy the full SHA
    b819852 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    11d6cbc View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    78a8dc9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    db94d80 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    21dafee View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    a7340be View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Move CPU CI launches on the runner without PVC (#432)

    * Update build_cpu.yml
    Garra1980 authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    48d6723 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fef3160 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. Configuration menu
    Copy the full SHA
    ba30be7 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2024

  1. Configuration menu
    Copy the full SHA
    9539371 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

  1. Configuration menu
    Copy the full SHA
    0b3015c View commit details
    Browse the repository at this point in the history

Commits on May 4, 2024

  1. Configuration menu
    Copy the full SHA
    9ea13c2 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. Configuration menu
    Copy the full SHA
    e7cf799 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    c8dde7a View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    7ba1967 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    0a60ab8 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Configuration menu
    Copy the full SHA
    5143307 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    37bbb85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b5c54a7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    340db8c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    28ad415 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Configuration menu
    Copy the full SHA
    67d03d5 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Configuration menu
    Copy the full SHA
    ca6b57e View commit details
    Browse the repository at this point in the history

Commits on May 18, 2024

  1. Configuration menu
    Copy the full SHA
    7eb0074 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. add werror flag

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    2f27666 View commit details
    Browse the repository at this point in the history
  2. add some exceptions

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    1d270b9 View commit details
    Browse the repository at this point in the history
  3. more cleanup

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    7ba57e6 View commit details
    Browse the repository at this point in the history
  4. Update CMakeLists.txt

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    7bab651 View commit details
    Browse the repository at this point in the history
  5. Update CMakeLists.txt

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    acd52e1 View commit details
    Browse the repository at this point in the history
  6. Update Utils.h

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    f05cd1d View commit details
    Browse the repository at this point in the history
  7. Update CMakeLists.txt

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    006eada View commit details
    Browse the repository at this point in the history
  8. Update CMakeLists.txt

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    c58cca0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ccbff57 View commit details
    Browse the repository at this point in the history
  10. More werror cleanup

    Garra1980 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    7513676 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f5c71fc View commit details
    Browse the repository at this point in the history