Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
5k views

CUDA for .net?

I know that there are a lot of CUDA language bindings, such as PyCUDA, but are there any good bindings for .Net? The only one I've seen is this one, but I'd like to know if there are any others.
6
votes
5answers
2k views

What is a language binding?

My good friend, Wikipedia, didn't give me a very good response to that question. So: What are language bindings? How do they work? Specifically accessing functions from code written in language X ...
5
votes
3answers
100 views

Languaged bindings involving non-gced memory for languages without guaranteed destructors?

When someone is making bindings from a C library to Java (or any other garbage-collected language without destructors that are guaranteed to run), how do they deal with proper deallocation of ...
2
votes
1answer
81 views

Parsing/executing C# code in C++ (on Linux)?

I want to be able to add scripting functionality to my application. One of the language bindings I am considering is C# (and possibly VB.Net). The challenge is this: My application is developed in ...
1
vote
1answer
135 views

Are any language bindings available for NSSpeechSynthesizer Cocoa class?

I know that i can use PyObjC to access Cocoa objects in Python. Can i do this with C++? What other languages can i use?
1
vote
1answer
153 views

What is PyObjC?

I understand the concept of PyObjC, but can nowhere find any information on what exactly it is or how to get started with it. Is it like a converter, where youinput python files and get an objective ...
1
vote
3answers
642 views

How to interface Ruby with Mercurial (Python)?

I'm hoping to integrate Mercurial into my Rails site. I want to run basic commands like status, summary, log, and maybe even clone. I'd like to interface directly with the Mercurial libraries and ...
0
votes
1answer
21 views

Binding Software

Is there a software for Language Bindings, other than SWIG. Also which is the most efficient ? I am looking for efficiency for C++ to Python bindings.
0
votes
1answer
49 views

Name binding and language binding

Name binding and language binding are different concepts. But I wonder if they are related and how they differ? Especially interested in the relation part. For example, if language binding is ...
0
votes
4answers
104 views

Can non-Java code be used in an eclipse plugin?

I've been using a tool for a while and I like it so much I'd like to have it as an eclipse plugin. Unfortunately, I think it's written in C++. Is there any way such a code base could be used as the ...