Hybridizer HOWTO — Virtual Functions

Hybridizer supports virtual functions. If an implementation/override of a virtual needs to be available on the GPU, it has to be flagged with a Kernel attribute.

  1. public interface ISimple
  2. {
  3. int f();
  4. }
  5. public class Answer : ISimple
  6. {
  7. [Kernel]
  8. public int f()
  9. {
  10. return 42 ;
  11. }
  12. }
  13. public class Other : ISimple
  14. {
  15. [Kernel]
  16. public int f()
  17. {
  18. return 12;
  19. }
  20. }
public interface ISimple
{
    int f();
}

public class Answer : ISimple
{
    [Kernel]
    public int f()
    {
        return 42 ;
    }
}

public class Other : ISimple
{
    [Kernel]
    public int f()
    {
        return 12;
    }
}


Tags: ,