Skip to content

Commit 87c57e4

Browse files
committed
Copy Enzyme test setup and use as basis for package
0 parents  commit 87c57e4

File tree

8 files changed

+659
-0
lines changed

8 files changed

+659
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Manifest.toml

LICENSE.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
The ParallelTestRunner.jl package is licensed under the MIT "Expat" License:
2+
3+
> Copyright (c) 2025-present: Valentin Churavy, Tim Besard and other contributors
4+
>
5+
>
6+
> All Rights Reserved.
7+
>
8+
> Permission is hereby granted, free of charge, to any person obtaining a copy
9+
> of this software and associated documentation files (the "Software"), to deal
10+
> in the Software without restriction, including without limitation the rights
11+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
> copies of the Software, and to permit persons to whom the Software is
13+
> furnished to do so, subject to the following conditions:
14+
>
15+
> The above copyright notice and this permission notice shall be included in all
16+
> copies or substantial portions of the Software.
17+
>
18+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
> SOFTWARE.
25+
>

Project.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name = "ParallelTestRunner"
2+
uuid = "d3525ed8-44d0-4b2c-a655-542cee43accc"
3+
authors = ["Valentin Churavy <[email protected]>"]
4+
version = "0.1.0"
5+
6+
[deps]
7+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
8+
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
9+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
10+
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
11+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
12+
13+
[compat]
14+
Dates = "1"
15+
Distributed = "1"
16+
Printf = "1"
17+
REPL = "1"
18+
Test = "1"
19+
julia = "1.10"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# ParallelTestRunner.jl
2+
3+
4+
## Inspiration
5+
Based on @maleadt test infrastructure for CUDA.jl and Julia Base.

0 commit comments

Comments
 (0)