-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove boilerplate * add failing test * gains `sum_with_threads_impl` * add more tests * handle empty vector case * remove superfluous comments * add R wrapper around implementation * add savvy-test feature * update function name * savvy::savvy_update() * devtools::document() * add benchmarking to README * add an R test
- Loading branch information
Showing
16 changed files
with
227 additions
and
241 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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,8 +1 @@ | ||
SEXP savvy_to_upper__ffi(SEXP c_arg__x); | ||
SEXP savvy_int_times_int__ffi(SEXP c_arg__x, SEXP c_arg__y); | ||
|
||
// methods and associated functions for Person | ||
SEXP savvy_Person_new__ffi(void); | ||
SEXP savvy_Person_set_name__ffi(SEXP self__, SEXP c_arg__name); | ||
SEXP savvy_Person_name__ffi(SEXP self__); | ||
SEXP savvy_Person_associated_function__ffi(void); | ||
SEXP savvy_sum_with_threads__ffi(SEXP c_arg__x, SEXP c_arg__n); |
Oops, something went wrong.