-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merged over anaconda work from other repository. Testing with actions…
… soon
- Loading branch information
Showing
81 changed files
with
2,041 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
c_compiler: | ||
- gcc | ||
cxx_compiler: | ||
- gxx | ||
target_platform: | ||
- linux-64 | ||
#- linux-aarch64 | ||
#- linux-ppc64le |
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
c_compiler: | ||
- gcc | ||
cxx_compiler: | ||
- gxx | ||
target_platform: | ||
- linux-64 | ||
#- linux-aarch64 | ||
#- linux-ppc64le |
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{% set version = "1.0.0" %} | ||
{% set linux_compiler_version = "12.4.0" %} | ||
{% set macos_compiler_version = "16" %} | ||
{% set cuda_version = "12.4" %} | ||
|
||
package: | ||
name: heffte-cuda | ||
version: {{ version }} | ||
|
||
source: | ||
git_url: https://github.com/icl-utk-edu/heffte.git | ||
git_depth: 1 | ||
|
||
build: | ||
number: 1 | ||
noarch: False | ||
script_env: | ||
- PLATFORM={{ target_platform }} | ||
skip: True # [osx] | ||
skip: False # [linux] | ||
|
||
requirements: | ||
build: | ||
- cmake=3.24 | ||
- {{ compiler('c') }}={{ linux_compiler_version }} # [linux] | ||
- {{ compiler('c') }}={{ macos_compiler_version }} # [osx] | ||
- {{ compiler('cxx') }}={{ linux_compiler_version }} # [linux] | ||
- {{ compiler('cxx') }}={{ macos_compiler_version }} # [osx] | ||
- {{ compiler('fortran') }}={{ linux_compiler_version }} | ||
- openmpi | ||
- cuda-compiler | ||
- cuda-toolkit={{ cuda_version }} | ||
#- cuda-toolkit | ||
# These host CUDA dependencies are definitely overspecified. | ||
# Not sure which ones are totally necessary. | ||
host: | ||
- cuda-cudart-static={{ cuda_version }} # Make sure your nvcc version and cudart versions are the same | ||
- cuda-compiler | ||
#- cuda-cudart-static | ||
- cuda-toolkit | ||
- libcusolver-dev | ||
- libcufft-dev | ||
- libcublas-dev | ||
- libcusparse-dev | ||
- openmpi | ||
run: | ||
- cuda-cudart | ||
- libcufft | ||
- libcublas | ||
- openmpi | ||
|
||
about: | ||
home: https://github.com/lanl/Fierro | ||
license: BSD-3-Clause | ||
license_family: BSD | ||
license_file: LICENSE | ||
summary: | ||
LANL Fierro's dependency for EVPFFT solver | ||
description: | ||
Fierro (LANL code number C21030) is a modern C++ code designed to simulate quasi-static | ||
solid mechanics problems and transient, compressible material dynamic problems with Lagrangian methods, | ||
which have meshes with constant mass elements that move with the material, | ||
or with Eulerian methods, which have stationary meshes. | ||
dev_url: https://github.com/lanl/Fierro | ||
|
||
extra: | ||
recipe-maintainers: | ||
- fierromechanics |
Oops, something went wrong.