Skip to content

Commit d7231e2

Browse files
authored
Revert "Rename Julia package to BabelStream.jl and add compats (#175)"
This reverts commit 78ba4ff.
1 parent ad61a0d commit d7231e2

28 files changed

+10
-20
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-22.04
4545
defaults:
4646
run:
47-
working-directory: ./src/julia/BabelStream.jl
47+
working-directory: ./src/julia/JuliaStream.jl
4848
steps:
4949
- uses: actions/checkout@v4
5050
- name: Setup project

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ BabelStream is currently implemented in the following parallel programming model
4444
- Futhark
4545

4646
This project also contains implementations in alternative languages with different build systems:
47-
* Julia - [BabelStream.jl](./src/julia/BabelStream.jl)
47+
* Julia - [JuliaStream.jl](./src/julia/JuliaStream.jl)
4848
* Java - [java-stream](./src/java/java-stream)
4949
* Scala - [scala-stream](./src/scala/scala-stream)
5050
* Rust - [rust-stream](./src/rust/rust-stream)
Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "BabelStream"
1+
name = "JuliaStream"
22
uuid = "1bdcc9b7-f5ed-4705-bc7b-be1b748ec681"
33
authors = ["Wei-Chen Lin <[email protected]>"]
44
version = "4.0"
@@ -16,14 +16,4 @@ ROCKernels = "7eb9e9f0-4bd3-4c4c-8bef-26bd9629d9b9"
1616
oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b"
1717

1818
[compat]
19-
AMDGPU = "0.4.8"
20-
ArgParse = "1.1.4"
21-
CUDA = "4.0.1"
22-
CUDAKernels = "0.4.7"
23-
Distributed = "1"
24-
ExprTools = "0.1.10"
25-
KernelAbstractions = "0.8.6"
26-
Parameters = "0.12.3"
27-
ROCKernels = "0.3.5"
28-
oneAPI = "1.0.2"
2919
julia = "1.9"

src/julia/BabelStream.jl/README.md renamed to src/julia/JuliaStream.jl/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BabelStream.jl
1+
JuliaStream.jl
22
==============
33

44
This is an implementation of BabelStream in Julia which contains the following variants:
@@ -35,15 +35,15 @@ A set of reduced dependency projects are available for the following backend and
3535
With Julia on path, run your selected benchmark with:
3636

3737
```shell
38-
> cd BabelStream.jl
38+
> cd JuliaStream.jl
3939
> julia --project=<BACKEND> -e 'import Pkg; Pkg.instantiate()' # only required on first run
4040
> julia --project=<BACKEND> src/<IMPL>Stream.jl
4141
```
4242

4343
For example. to run the CUDA implementation:
4444

4545
```shell
46-
> cd BabelStream.jl
46+
> cd JuliaStream.jl
4747
> julia --project=CUDA -e 'import Pkg; Pkg.instantiate()'
4848
> julia --project=CUDA src/CUDAStream.jl
4949
```
@@ -61,7 +61,7 @@ There may be instances where some packages are locked to an older version becaus
6161

6262
To run the benchmark using the top-level project, run the benchmark with:
6363
```shell
64-
> cd BabelStream.jl
64+
> cd JuliaStream.jl
6565
> julia --project -e 'import Pkg; Pkg.instantiate()'
6666
> julia --project src/<IMPL>Stream.jl
67-
```
67+
```
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module BabelStream
1+
module JuliaStream
22
end
33

4-
println("Please run benchmarks directly via `julia --project src/<IMPL>Stream.jl`")
4+
println("Please run benchmarks directly via `julia --project src/<IMPL>Stream.jl`")

0 commit comments

Comments
 (0)