-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:gridap/GridapDistributed.jl into …
…p4est-migration
- Loading branch information
Showing
20 changed files
with
33 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module CellDataTestsSeq | ||
using PartitionedArrays | ||
include("../CellDataTests.jl") | ||
prun(CellDataTests.main,sequential,(2,2)) | ||
with_backend(CellDataTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module DivConformingTestsSeq | ||
using PartitionedArrays | ||
include("../DivConformingTests.jl") | ||
prun(DivConformingTests.main,sequential,2) | ||
with_backend(DivConformingTests.main,SequentialBackend(),2) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module FESpacesTestsSeq | ||
using PartitionedArrays | ||
include("../FESpacesTests.jl") | ||
prun(FESpacesTests.main,sequential,(2,2)) | ||
with_backend(FESpacesTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module GeometryTestsSeq | ||
using PartitionedArrays | ||
include("../GeometryTests.jl") | ||
prun(GeometryTests.main,sequential,(2,2)) | ||
prun(GeometryTests.main,sequential,(2,2,2)) | ||
with_backend(GeometryTests.main,SequentialBackend(),(2,2)) | ||
with_backend(GeometryTests.main,SequentialBackend(),(2,2,2)) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module HeatEquationTestsSeq | ||
using PartitionedArrays | ||
include("../HeatEquationTests.jl") | ||
prun(HeatEquationTests.main,sequential,(2,2)) | ||
with_backend(HeatEquationTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module MultiFieldTestsSeq | ||
using PartitionedArrays | ||
include("../MultiFieldTests.jl") | ||
prun(MultiFieldTests.main,sequential,(2,2)) | ||
with_backend(MultiFieldTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module PLaplacianTestsSeq | ||
using PartitionedArrays | ||
include("../PLaplacianTests.jl") | ||
prun(PLaplacianTests.main,sequential,(2,2)) | ||
with_backend(PLaplacianTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module PoissonTestsSeq | ||
using PartitionedArrays | ||
include("../PoissonTests.jl") | ||
prun(PoissonTests.main,sequential,(2,2)) | ||
with_backend(PoissonTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module StokesOpenBoundaryTestsSeq | ||
using PartitionedArrays | ||
include("../StokesOpenBoundaryTests.jl") | ||
prun(StokesOpenBoundaryTests.main,sequential,(2,2)) | ||
with_backend(StokesOpenBoundaryTests.main,SequentialBackend(),(2,2)) | ||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module SurfaceCouplingTestsSeq | ||
using PartitionedArrays | ||
include("../SurfaceCouplingTests.jl") | ||
prun(SurfaceCouplingTests.main,sequential,(2,2)) | ||
with_backend(SurfaceCouplingTests.main,SequentialBackend(),(2,2)) | ||
end # module | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module TransientDistributedCellFieldTestsSeq | ||
using PartitionedArrays | ||
include("../TransientDistributedCellFieldTests.jl") | ||
prun(TransientDistributedCellFieldTests.main,sequential,(2,2)) | ||
with_backend(TransientDistributedCellFieldTests.main,SequentialBackend(),(2,2)) | ||
end # module |
2 changes: 1 addition & 1 deletion
2
test/sequential/TransientMultiFieldDistributedCellFieldTests.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module TransientMultiFieldDistributedCellFieldTestsSeq | ||
using PartitionedArrays | ||
include("../TransientMultiFieldDistributedCellFieldTests.jl") | ||
prun(TransientMultiFieldDistributedCellFieldTests.main,sequential,(2,2)) | ||
with_backend(TransientMultiFieldDistributedCellFieldTests.main,SequentialBackend(),(2,2)) | ||
end # module |