C# Class OpenCl.DotNetCore.OpenClException

Represents an exception, which is thrown when there is an OpenCL error.
Inheritance: Exception
Afficher le fichier Open project: swap-dev/SwapReferenceMiner

Méthodes publiques

Méthode Description
OpenClException ( ) : System

Initializes a new OpenClException instance.

OpenClException ( Result result ) : System

Initializes a new OpenClException instance.

OpenClException ( string message ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Exception inner ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Exception inner, Result result ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Result result ) : System

Initializes a new OpenClException instance.

Method Details

OpenClException() public méthode

Initializes a new OpenClException instance.
public OpenClException ( ) : System
Résultat System

OpenClException() public méthode

Initializes a new OpenClException instance.
public OpenClException ( Result result ) : System
result Result The error code that was returned by OpenCL.
Résultat System

OpenClException() public méthode

Initializes a new OpenClException instance.
public OpenClException ( string message ) : System
message string An error message.
Résultat System

OpenClException() public méthode

Initializes a new OpenClException instance.
public OpenClException ( string message, Exception inner ) : System
message string An error message.
inner Exception The inner exception, which is the root cause for this exception.
Résultat System

OpenClException() public méthode

Initializes a new OpenClException instance.
public OpenClException ( string message, Exception inner, Result result ) : System
message string An error message.
inner Exception The inner exception, which is the root cause for this exception.
result Result The error code that was returned by OpenCL.
Résultat System

OpenClException() public méthode

Initializes a new OpenClException instance.
public OpenClException ( string message, Result result ) : System
message string An error message.
result Result The error code that was returned by OpenCL.
Résultat System