A General-purpose Parallel and Heterogeneous Task Programming System
-
Updated
Apr 16, 2022 - C++
{{ message }}
A General-purpose Parallel and Heterogeneous Task Programming System
Computing with Python functions.
A list of computer-science readings I recommend
A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
Evolutionary algorithm toolbox and framework with high performance for Python
高性能并行编程与优化 - 课件
This project now lives on in a rewrite at https://gitlab.redox-os.org/redox-os/parallel
SIMD Vector Classes for C++
Kokkos C++ Performance Portability Programming EcoSystem: The Programming Model - Parallel Execution and Memory Abstraction
A fast, ergonomic and portable tensor library in Nim with a deep learning focus for CPU, GPU and embedded devices via OpenMP, Cuda and OpenCL backends
Lightweight, general, scalable C++ library for finite element methods
OpenCL integration for Python, plus shiny features
A tool for running android and iOS appium tests in parallel across devices... U like it STAR it !
The standard accelerate test suite, used by all the backends, can be quite slow. Several of the tests are significantly slower than the others, for example segmented folds and scans, which I believe is because the reference implementations are very inefficient. Writing some more efficient reference implementations (e.g. using Data.Vector.Unboxed) should help speed things up.
When computing the isosurface, when 4 simplex edges crosses the isosurface, we add 2 triangles to the isosurface triangulation.
Right now we add these arbitrarily (in these 3 lines) but we should add them so that the curvature is minimized.
The current state o
Kratos Multiphysics (A.K.A Kratos) is a framework for building parallel multi-disciplinary simulation software. Modularity, extensibility and HPC are the main objectives. Kratos has BSD license and is written in C++ with extensive Python interface.
Official git repository of Elmer FEM software
Numba extension for compiling Pandas data frames, Intel® Scalable Dataframe Compiler
A C++ platform to perform parallel computations of optimisation tasks (global and local) via the asynchronous generalized island model.
Python bindings for MPI
Super charged typed JavaScript dialect for parallel programming which compiles to WebAssembly
Must read research papers and links to tools and datasets that are related to using machine learning for compilers and systems optimisation
Harmonious distributed data analysis in Rust.
An optimization and data collection toolbox for convenient and fast prototyping of computationally expensive models.
Parallel programming with Python
Efficient Haskell Arrays featuring Parallel computation
A curated list of awesome parallel computing resources
Add a description, image, and links to the parallel-computing topic page so that developers can more easily learn about it.
To associate your repository with the parallel-computing topic, visit your repo's landing page and select "manage topics."
Suppose
Would be nice to have a
degreefunction that we can use asdegree(z,x)to extract the degree ofzwith respect tox(this will help for multi-variable polynomials too).Also
coeff(z,x)to extract a list of coefficients with respect to he variablex. Thuscoeff(z,x^2)returns the coefficient with respect tox^2and so on.