Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chapel: new implementation #28

Open
wants to merge 5 commits into
base: v1
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
mark compile-time constants as param
milthorpe committed Dec 12, 2022
commit b1a00eb410bc9f8163e8f7bcc838eb905b5c5204
2 changes: 1 addition & 1 deletion chapel/Bude.chpl
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ module Bude {
param NPNPDIST: real(32) = 5.5;
param NPPDIST: real(32) = 1.0;

param WORK_GROUP = 0..<WGSIZE;
const WORK_GROUP = 0..<WGSIZE;

record atom {
var x, y, z: real(32);