Merge branch 'compiler_fixes3' into demo_mode3

This commit is contained in:
Andrzej Janik 2025-09-25 23:13:10 +00:00
commit 70e1126c8e
4 changed files with 21 additions and 17 deletions

View file

@ -24,14 +24,14 @@ jobs:
name: Build (Linux) name: Build (Linux)
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: jlumbroso/free-disk-space@main - uses: jlumbroso/free-disk-space@v1.3.1
with: with:
# Removing Android stuff should be enough # Removing Android, .NET, docker stuff should be enough
android: true android: true
dotnet: false dotnet: true
docker-images: true
haskell: false haskell: false
large-packages: false large-packages: false
docker-images: false
swap-storage: false swap-storage: false
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@ -79,14 +79,14 @@ jobs:
outputs: outputs:
test_package: ${{ steps.upload_artifacts.outputs.artifact-id }} test_package: ${{ steps.upload_artifacts.outputs.artifact-id }}
steps: steps:
- uses: jlumbroso/free-disk-space@main - uses: jlumbroso/free-disk-space@v1.3.1
with: with:
# Removing Android stuff should be enough # Removing Android, .NET, docker stuff should be enough
android: true android: true
dotnet: false dotnet: true
docker-images: true
haskell: false haskell: false
large-packages: false large-packages: false
docker-images: false
swap-storage: false swap-storage: false
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

View file

@ -18,14 +18,14 @@ jobs:
permissions: permissions:
contents: write contents: write
steps: steps:
- uses: jlumbroso/free-disk-space@main - uses: jlumbroso/free-disk-space@v1.3.1
with: with:
# Removing Android stuff should be enough # Removing Android, .NET, docker stuff should be enough
android: true android: true
dotnet: false dotnet: true
docker-images: true
haskell: false haskell: false
large-packages: false large-packages: false
docker-images: false
swap-storage: false swap-storage: false
- uses: actions/checkout@v4 - uses: actions/checkout@v4
# fetch-depth and fetch-tags are required to properly tag pre-release builds # fetch-depth and fetch-tags are required to properly tag pre-release builds
@ -117,14 +117,14 @@ jobs:
outputs: outputs:
test_package: ${{ steps.upload_artifacts.outputs.artifact-id }} test_package: ${{ steps.upload_artifacts.outputs.artifact-id }}
steps: steps:
- uses: jlumbroso/free-disk-space@main - uses: jlumbroso/free-disk-space@v1.3.1
with: with:
# Removing Android stuff should be enough # Removing Android, .NET, docker stuff should be enough
android: true android: true
dotnet: false dotnet: true
docker-images: true
haskell: false haskell: false
large-packages: false large-packages: false
docker-images: false
swap-storage: false swap-storage: false
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

Binary file not shown.

View file

@ -352,7 +352,11 @@ test_ptx!(
[613065134u32] [613065134u32]
); );
test_ptx!(param_is_addressable, [0xDEAD], [0u64]); test_ptx!(param_is_addressable, [0xDEAD], [0u64]);
test_ptx!(atomics_128, [0xce16728dead1ceb0u64, 0xe7728e3c390b7fb7], [0xce16728dead1ceb1u64, 0xe7728e3c390b7fb8]); test_ptx!(
atomics_128,
[0xce16728dead1ceb0u64, 0xe7728e3c390b7fb7],
[0xce16728dead1ceb1u64, 0xe7728e3c390b7fb8]
);
test_ptx!(assertfail); test_ptx!(assertfail);
// TODO: not yet supported // TODO: not yet supported