Skip to content

Commit

Permalink
Run CI again
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Dec 19, 2023
1 parent 8ca0770 commit 3d59bad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions mpi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,8 @@ sudo pacman -S openmpi
brew install openmpi
```

- On Windows, you can install the OpenMPI library with:

```bash
choco install openmpi
```
- On Windows, you can install the OpenMPI following the instructions
[here](https://www.open-mpi.org/software/ompi/v1.6/ms-windows.php).

- On FreeBSD, you can install the OpenMPI library with:

Expand Down
2 changes: 1 addition & 1 deletion vcl/vcl.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn get_platforms() ![]ClPlatformId {
if ret != success {
return error_from_code(ret)
}
mut platform_ids := []ClPlatformId{len: int(n)}
mut platform_ids := unsafe { []ClPlatformId{len: int(n)} }
ret = cl_get_platform_i_ds(n, unsafe { &platform_ids[0] }, unsafe { nil })
return error_or_default(ret, platform_ids)
}
Expand Down

0 comments on commit 3d59bad

Please sign in to comment.