class Ikra::Types::InterpreterOnlyType

This type is marker and denotes that an expression should be executed only in the Ruby interpreter. No CUDA code should be generated for such expressions.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/types/types/ruby_type.rb, line 71
def self.new
    if @singleton_instance == nil
        @singleton_instance = super
    end

    return @singleton_instance
end