-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added hpx::copy * added hpx::copy_n * added hpx::copy_if * added hpx::count, hpx::count_if * rerun tests * added hpx::ends_with * added hpx::equal * added hpx::fill but it only works for 1D vector * added hpx::find * added hpx::sort * added hpx::sort along with comparator closure as an argument * added hpx::merge * added hpx::partial_sort * moved wrappers from tests to main * removed redundant copy from copy, sort * removed redundant copy from copy_n * removed redundant copy from find, fill, sort_comp * removed redundant copy from merge, partial sort * removed redundant copy from copy_if * rerun tests --------- Signed-off-by: Dikshant <[email protected]>
- Loading branch information
Showing
3 changed files
with
580 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "hpx-rs" | ||
version = "0.1.0" | ||
authors = ["Shreyas Atre <[email protected]>", "Dikshant <[email protected]"] | ||
authors = ["Shreyas Atre <[email protected]>", "Dikshant <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
repository = "https://github.com/STEllAR-GROUP/hpx-rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.