Skip to content

Commit 04f29f7

Browse files
committed
Rename master to main branch.
[ci skip]
1 parent 2ace55f commit 04f29f7

10 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ assignees: ''
2121
that information, make sure to post it as part of the issue.
2222

2323
- [ ] Always ensure you're using the latest version of CUDA.jl, and if possible, please
24-
check the master branch to see if your issue hasn't been resolved yet.
24+
check the main branch to see if your issue hasn't been resolved yet.
2525

2626
If your bug is still valid, please go ahead and fill out the template below.
2727

.github/workflows/Benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ permissions:
88
on:
99
pull_request_target:
1010
branches:
11-
- master
11+
- main
1212
push:
1313
branches:
14-
- master
14+
- main
1515

1616
jobs:
1717
benchmark:

.github/workflows/Container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
tags:
1717
- 'v*'
1818
branches:
19-
- master
19+
- main
2020

2121
jobs:
2222
push_to_registry:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
1414
[docs-dev-url]: https://cuda.juliagpu.org/dev/
1515

16-
[buildkite-img]: https://badge.buildkite.com/27aaeb352a9420297ed2d30cb055ac383a399ea8f121599912.svg?branch=master
16+
[buildkite-img]: https://badge.buildkite.com/27aaeb352a9420297ed2d30cb055ac383a399ea8f121599912.svg?branch=main
1717
[buildkite-url]: https://buildkite.com/julialang/cuda-dot-jl
1818

19-
[codecov-img]: https://codecov.io/gh/JuliaGPU/CUDA.jl/branch/master/graph/badge.svg
19+
[codecov-img]: https://codecov.io/gh/JuliaGPU/CUDA.jl/branch/main/graph/badge.svg
2020
[codecov-url]: https://codecov.io/gh/JuliaGPU/CUDA.jl
2121

2222
[benchmark-img]: https://img.shields.io/badge/benchmarks-Chart-yellowgreen
@@ -155,7 +155,7 @@ Much of the software in this ecosystem was developed as part of academic researc
155155
would like to help support it, please star the repository as such metrics may help us secure
156156
funding in the future. If you use our software as part of your research, teaching, or other
157157
activities, we would be grateful if you could cite our work. The
158-
[CITATION.bib](https://github.com/JuliaGPU/CUDA.jl/blob/master/CITATION.bib) file in the
158+
[CITATION.bib](https://github.com/JuliaGPU/CUDA.jl/blob/main/CITATION.bib) file in the
159159
root of this repository lists the relevant papers.
160160

161161

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ function main()
1313
cd(@__DIR__) do
1414
Literate.markdown(
1515
"src/tutorials/introduction.jl", "src/tutorials";
16-
repo_root_url = "$src/blob/master/docs"
16+
repo_root_url = "$src/blob/main/docs"
1717
)
1818
Literate.markdown(
1919
"src/tutorials/custom_structs.jl", "src/tutorials";
20-
repo_root_url = "$src/blob/master/docs"
20+
repo_root_url = "$src/blob/main/docs"
2121
)
2222
Literate.markdown(
2323
"src/tutorials/performance.jl", "src/tutorials";
24-
repo_root_url = "$src/blob/master/docs"
24+
repo_root_url = "$src/blob/main/docs"
2525
)
2626
end
2727
println()

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ slack](https://julialang.slack.com/), or the [GPU domain of the Julia
99
Discourse](https://discourse.julialang.org/c/domain/gpu).
1010

1111
For information on recent or upcoming changes, consult the
12-
[`NEWS.md`](https://github.com/JuliaGPU/CUDA.jl/blob/master/NEWS.md) document in the CUDA.jl
12+
[`NEWS.md`](https://github.com/JuliaGPU/CUDA.jl/blob/main/NEWS.md) document in the CUDA.jl
1313
repository.
1414

1515

@@ -69,5 +69,5 @@ Much of the software in this ecosystem was developed as part of academic researc
6969
would like to help support it, please star the repository as such metrics may help us secure
7070
funding in the future. If you use our software as part of your research, teaching, or other
7171
activities, we would be grateful if you could cite our work. The
72-
[CITATION.bib](https://github.com/JuliaGPU/CUDA.jl/blob/master/CITATION.bib) file in the
72+
[CITATION.bib](https://github.com/JuliaGPU/CUDA.jl/blob/main/CITATION.bib) file in the
7373
root of this repository lists the relevant papers.

docs/src/installation/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Or, equivalently, via the `Pkg` API:
2323
julia> import Pkg; Pkg.add("CUDA")
2424
```
2525

26-
In some cases, you might need to use the `master` version of this package, e.g., because it
26+
In some cases, you might need to use the `main` version of this package, e.g., because it
2727
includes a specific fix you need. Often, however, the development version of this package
2828
itself relies on unreleased versions of other packages. This information is recorded in the
2929
manifest at the root of the repository, which you can use by starting Julia from the CUDA.jl

docs/src/tutorials/performance.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
# [Advanced Julia GPU
6767
# Training](https://github.com/JuliaComputing/Training/tree/master/AdvancedGPU).
6868

69-
# Also see the [perf](https://github.com/JuliaGPU/CUDA.jl/tree/master/perf) folder for some
69+
# Also see the [perf](https://github.com/JuliaGPU/CUDA.jl/tree/main/perf) folder for some
7070
# optimised code examples.
7171

7272
# ## Julia Specific Tips

lib/cudnn/src/cuDNN.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cuDNN
33
44
High level interface to cuDNN functions. See
5-
[README.md](https://github.com/JuliaGPU/CUDA.jl/blob/master/lib/cudnn/README.md) for a
5+
[README.md](https://github.com/JuliaGPU/CUDA.jl/blob/main/lib/cudnn/README.md) for a
66
design overview.
77
"""
88
module cuDNN

src/CUDA.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ using cuFFT
4747
using cuRAND
4848
export cuBLAS, cuSPARSE, cuSOLVER, cuFFT, cuRAND
4949

50-
# Backward compatibility: master exported these as submodule names
50+
# Backward compatibility: previously exported as submodule names
5151
Base.@deprecate_binding CUBLAS cuBLAS true
5252
Base.@deprecate_binding CUSPARSE cuSPARSE true
5353
Base.@deprecate_binding CUSOLVER cuSOLVER true

0 commit comments

Comments
 (0)