Skip to content

Commit

Permalink
fix memory option on interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
QinbinLi committed Oct 28, 2018
1 parent 235979e commit a824cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thundersvm/svm_interface_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ extern "C" {
CUDA_CHECK(cudaSetDevice(parser.gpu_id));
#endif

model->set_max_memory_size(parser.param_cmd.max_mem_size);
model->set_max_memory_size_Byte(parser.param_cmd.max_mem_size);
model->load_from_file(model_file_path);
file.close();
file.open(output_file_path, fstream::out);
Expand Down

0 comments on commit a824cce

Please sign in to comment.