Skip to content

Commit f795f21

Browse files
committed
rename
1 parent a97089a commit f795f21

File tree

9 files changed

+27
-31
lines changed

9 files changed

+27
-31
lines changed

Project.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
name = "BatchPOIKernels"
1+
name = "BatchConeKernels"
22
uuid = "afeb8112-68be-11f0-3c37-57b6e69465f2"
33
authors = ["Klamkin", "Michael <[email protected]> and contributors"]
44
version = "1.0.0-DEV"
55

66
[deps]
77
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
8-
ParametricOptInterface = "0ce4ce61-57bf-432b-a095-efac525d185e"
98

109
[weakdeps]
1110
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
1211

1312
[extensions]
14-
BPKChainRulesCore = "ChainRulesCore"
13+
BCKChainRulesCore = "ChainRulesCore"
1514

1615
[extras]
1716
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1817

1918
[targets]
20-
test = ["Test"]
19+
test = ["Test"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# BatchPOIKernels.jl
1+
# BatchConeKernels.jl
22

3-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://LearningToOptimize.github.io/BatchPOIKernels.jl/dev/)
4-
[![Build Status](https://github.com/LearningToOptimize/BatchPOIKernels.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/LearningToOptimize/BatchPOIKernels.jl/actions/workflows/CI.yml?query=branch%3Amain)
5-
[![Coverage](https://codecov.io/gh/LearningToOptimize/BatchPOIKernels.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/LearningToOptimize/BatchPOIKernels.jl)
3+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://LearningToOptimize.github.io/BatchConeKernels.jl/dev/)
4+
[![Build Status](https://github.com/LearningToOptimize/BatchConeKernels.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/LearningToOptimize/BatchConeKernels.jl/actions/workflows/CI.yml?query=branch%3Amain)
5+
[![Coverage](https://codecov.io/gh/LearningToOptimize/BatchConeKernels.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/LearningToOptimize/BatchConeKernels.jl)

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
using Documenter
2-
using BatchPOIKernels
2+
using BatchConeKernels
33

44

55
include("definitions.jl")
66

77
makedocs(
8-
modules=[BatchPOIKernels],
9-
sitename = "BatchPOIKernels.jl",
8+
modules=[BatchConeKernels],
9+
sitename = "BatchConeKernels.jl",
1010
format = Documenter.HTML(;
1111
assets = ["assets/wider.css", "assets/redlinks.css"],
1212
mathengine = Documenter.MathJax3(Dict(
@@ -26,6 +26,6 @@ makedocs(
2626
# See "Hosting Documentation" and deploydocs() in the Documenter manual
2727
# for more information.
2828
deploydocs(
29-
repo="github.com/LearningToOptimize/BatchPOIKernels.jl.git",
29+
repo="github.com/LearningToOptimize/BatchConeKernels.jl.git",
3030
push_preview=true,
3131
)

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# BatchPOIKernels.jl
1+
# BatchConeKernels.jl
22

33
```@autodocs
4-
Modules = [BatchPOIKernels]
4+
Modules = [BatchConeKernels]
55
```

ext/BCKChainRulesCore.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module BCKChainRulesCore
2+
3+
using BatchConeKernels
4+
using ChainRulesCore
5+
6+
7+
end # module BCKChainRulesCore

ext/BPKChainRulesCore.jl

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/BatchConeKernels.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module BatchConeKernels
2+
3+
using KernelAbstractions
4+
const KA = KernelAbstractions
5+
6+
end

src/BatchPOIKernels.jl

Lines changed: 0 additions & 9 deletions
This file was deleted.

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
using BatchPOIKernels
1+
using BatchConeKernels
22
using Test

0 commit comments

Comments
 (0)