Sha256: 5c89b848f23a7ad0829229eb6568cf5972ced6aebbd4eb276131a2074a12d26c

Contents?: true

Size: 377 Bytes

Versions: 15

Compression:

Stored size: 377 Bytes

Contents

require 'ostruct'

module TensorStream
  # Convenience class for specifying valid data_types
  module Types
    def self.int16
      :int16
    end

    def self.float32
      :float32
    end

    def self.int32
      :int32
    end

    def self.float64
      :float64
    end

    def self.string
      :string
    end

    def self.boolean
      :boolean
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
tensor_stream-0.8.1 lib/tensor_stream/types.rb
tensor_stream-0.8.0 lib/tensor_stream/types.rb
tensor_stream-0.7.0 lib/tensor_stream/types.rb
tensor_stream-0.6.1 lib/tensor_stream/types.rb
tensor_stream-0.6.0 lib/tensor_stream/types.rb
tensor_stream-0.5.1 lib/tensor_stream/types.rb
tensor_stream-0.5.0 lib/tensor_stream/types.rb
tensor_stream-0.4.1 lib/tensor_stream/types.rb
tensor_stream-0.4.0 lib/tensor_stream/types.rb
tensor_stream-0.3.0 lib/tensor_stream/types.rb
tensor_stream-0.2.0 lib/tensor_stream/types.rb
tensor_stream-0.1.5 lib/tensor_stream/types.rb
tensor_stream-0.1.4 lib/tensor_stream/types.rb
tensor_stream-0.1.3 lib/tensor_stream/types.rb
tensor_stream-0.1.2 lib/tensor_stream/types.rb