-
Notifications
You must be signed in to change notification settings - Fork 7
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
Discussion for API and implementation of the go wrapper #1
Comments
@rabarar We already have a functional C API for all functions in ArrayFire. You can perhaps look at https://github.com/arrayfire/arrayfire-python and https://github.com/arrayfire/arrayfire-rust wrappers to see how the C functions are being called from the respective languages. I foresee something similar happening in go as well. |
Perfect - I'll start there.
|
Okay, correct me if I'm wrong, but it appears that I can build mappings between the calls in the ./src/api/unified directory and I should have a full coverage of the api? Correct? Take a look at the repo src/arrayfire/*.go and you'll see the beginning of a mapping. If you think this is the way to go, I'll continue to build out the mapping and we should have something to play with. I'm going to pause here unit you give me feedback. |
@rabarar The easier way to do this is to look at the bottom half functions in every header file in arrayfire/include/af/ after the section |
The structure you have so far looks good, but the one thing I am concerned about is users doing something like this (if the API allows it)
|
Use cgo to bind the C API:
https://golang.org/cmd/cgo/
Needs more discussion.
The text was updated successfully, but these errors were encountered: