hpc
Here are 1,459 public repositories matching this topic...
Dear Colossal-AI team,
There are a few features in my mind that I thought would be helpful to the project, and I wanted to ask if there is any of them which might be more useful so I could start implementing them.
Loki-Promtail is a tool for monitoring distributed logs with Grafana. Connecting the Distributed Logger to it and extracting labels from the log structure would be a user-friendly sys
Current implementation of join can be improved by performing the operation in a single call to the backend kernel instead of multiple calls.
This is a fairly easy kernel and may be a good issue for someone getting to know CUDA/ArrayFire internals. Ping me if you want additional info.
Summary
spack find has a --tag flag that lets you filter packages containing a certain tag. We should add the same flag to spack list.
Rationale
A user may want to list all packages belonging to a certain category, not just installed packages.
Description
We just need to add a --tag flag to spack list, should be straightforward to copy this setting from spack find
What would you like to be added:
minikube implements a local Kubernetes cluster on macOS, Linux, and Windows.
minikube addons is a marketplace for developers to share configurations for running services on minikube.
Why is this needed:
We could add volcano as a minikube addons to help user can insta
Version of Singularity:
3.0.3
Expected behavior
Some progress or update information during the creation of the SIF file.
Actual behavior
During "Creating SIF file..." step, the console does not produce any visible output for the user - but does create the resulting file eventually.
Steps to reproduce behavior
I was executing a few “larger” builds through the bui
There is currently code generation for C and Python and there are a few inofficial bridges using the former to call futhark code from Haskell, Python, rust and Standard ML. However, there is no such convenient way to call futhark from a JVM language. Please add such support. I'd love to be able to call futhark code from, e.g., a Scala program. Thanks!
-
Updated
Aug 10, 2022 - Groovy
The documentation for the function shmem_wait seems inconsistent with the function signatures as it describes parameters target, pe, and value that are actually not part of the interface. The parameter ivar is described but at least in the C interface the variable is named var (without the prefix i).
See https://github.com/open-mpi/ompi/blob/master/oshmem/shmem/man/man3/shmem_wai
-
Updated
Aug 9, 2022 - C
-
Updated
Aug 3, 2022 - C++
**Is this
-
Updated
Aug 10, 2022 - C++
-
Updated
May 9, 2022 - Python
Good evening, I am currently struggling with compiling SU2 from source code. After I have built the program I try to compile it using ninja.exe, but during the process I get the following error:
[443/454] Linking target SU2_DEF/src/SU2_DEF.exe
FAILED: SU2_DEF/src/SU2_DEF.exe
c++ @SU2_DEF/src/SU2_DEF.exe.rsp
C:/Program Files/mingw-w64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../..
-
Updated
Jul 29, 2022 - R
-
Updated
Aug 10, 2022 - Scala
-
Updated
Jul 25, 2022 - C++
-
Updated
Aug 9, 2022 - Cuda
-
Updated
Jul 1, 2022 - Makefile
-
Updated
Aug 10, 2022 - C
-
Updated
Aug 10, 2022 - C
Add the appropriate libncurses package name for each supported distro. This is commonly named libncurses5.
-
Updated
May 19, 2022 - Python
-
Updated
Aug 10, 2022 - C++
-
Updated
Nov 16, 2019 - C++
while the FORCE_EVAL/SUBSYS/COORD allows to add an optional string after the coordinates to specify the connectivity, additional columns in a XYZ file are ignored, since the XYZ file format is not standardized. Nevertheless, it would be nice to have an option to tell CP2K to use the N-th additional column in a XYZ for the connectivity (or possibly other things).
@KanySUI is that about right?
Cirrus CI now has the ability to run tests over an ARM container:
https://cirrus-ci.org/guide/linux/#linux-containers
.cirrus.yml could be updated to add a test case that run on such container to verify Modules correctly build and run on such CPU architecture.
Improve this page
Add a description, image, and links to the hpc topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the hpc topic, visit your repo's landing page and select "manage topics."
This subject was initially discussed in https://discourse.julialang.org/t/efficient-way-to-split-string-at-specific-index/83115/17 regarding a way to split a string into equal-length substrings.
The solutions discussed involved (for a string composed of 10 blocks of 8 strings)
split8(str::String) = [str[i+1:8] for i in 0:8:length(str)]