Michael Ferguson
Michael Ferguson
Over on the Chapel project we are trying to use pkg-config .pc files from the bundled third-party dependencies instead of libtool .la files. The reason we are doing this is...
a8499af changed src/analysis/costModel.cpp to turn off some debug printouts, but these seem to have reappeared in later revisions and are there in the current master branch. Is it possible to...
This repo needs some documentation for how to install/use, even if it's sketchy. Here's what I did to get it working on Mac OS X: ``` brew tap homebrew/dupes xcode-select...
This PR adds [Chapel](https://chapel-lang.org/) ports of the C matmul and nqueen benchmarks. These should have competitive performance with the C versions (at least, they do on the systems I have...
As a Chapel user, I would like to have access to higher precision floating point numbers that are supported by hardware. For example `real(80)` or `real(128)` are already supported by...
This issue is pulled out of "What should the semantics be when returning an ArrayView?" #5341. (There is a lot of discussion and motivation on that issue - this issue...
This PR improves the documentation search results for specific searches: * new * with * by * zip * local In order to do so, it adds `.. index::` entries...
I'm observing a problem where `make chplcheck-venv` removes parts of the `chpl-venv` used for `chpldoc`. ``` $ make docs $ ls third-party/chpl-venv/install/chpldeps/bin/ # output includes sphinx-build $ make chplcheck $...
It's interesting to consider if [Enzyme](https://enzyme.mit.edu/) can be integrated into Chapel. It supports automatic differentiation and that's useful for machine learning. This issue serves as a place for discussion on...
Today in the LinearAlgebra module we write matrix-matrix multiplication with e.g. `A.dot(B)` or `dot(A,B)`. However, it would be more math-like if we had an infix operator for this. It's my...