! Save the program. * * \see deserialize */
| 3985 | * \see deserialize |
| 3986 | */ |
| 3987 | std::string serialize() const { |
| 3988 | // Note: Must update kSerializationVersion if this is changed. |
| 3989 | |
| 3990 | std::cout << "Inside serialize!!!!" << std::endl; |
| 3991 | return serialization::serialize( |
| 3992 | _cuda_kernel->function_name(), _cuda_kernel->ptx(), |
| 3993 | _cuda_kernel->link_files(), _cuda_kernel->link_paths()); |
| 3994 | } |
| 3995 | |
| 3996 | /*! Configure the kernel launch. |
| 3997 | * |
nothing calls this directly
no test coverage detected