Exception: Ignis::LibraryNotFoundError
- Defined in:
- lib/nvruby/errors.rb
Overview
Raised when required CUDA library is not found
Instance Attribute Summary collapse
-
#library_name ⇒ String
readonly
Library name that was not found.
Instance Method Summary collapse
-
#initialize(library_name) ⇒ LibraryNotFoundError
constructor
A new instance of LibraryNotFoundError.
Constructor Details
#initialize(library_name) ⇒ LibraryNotFoundError
Returns a new instance of LibraryNotFoundError.
186 187 188 189 |
# File 'lib/nvruby/errors.rb', line 186 def initialize(library_name) @library_name = library_name super("Required CUDA library not found: #{library_name}") end |
Instance Attribute Details
#library_name ⇒ String (readonly)
Returns Library name that was not found.
183 184 185 |
# File 'lib/nvruby/errors.rb', line 183 def library_name @library_name end |