String command;
if (File.separator.equals("/")) {
command = m_cudaPath.get() + "/nvcc " + model_string + " " +
m_gencodeOptions + "-I/usr/local/cuda/include -fatbin " + m_generated.getAbsolutePath() +
" -o " + code_file.getAbsolutePath();
CompilerRunner runner = new CompilerRunner();
List<String> errors = runner.run(command);
if (errors.isEmpty() == false) {
m_result = new CompileResult(m_m32, null, errors);
return;
}
} else {