Commit 958bd88e authored by Robert Kimball's avatar Robert Kimball

style

parent bb8841b5
...@@ -65,7 +65,7 @@ static void ...@@ -65,7 +65,7 @@ static void
{ {
const shared_ptr<runtime::HostTensor>& data = tensors.parameter_data[arg_index]; const shared_ptr<runtime::HostTensor>& data = tensors.parameter_data[arg_index];
arg->write(data->get_data_ptr(), arg->write(data->get_data_ptr(),
data->get_element_count() * data->get_element_type().size()); data->get_element_count() * data->get_element_type().size());
} }
} }
data_written = true; data_written = true;
...@@ -85,7 +85,7 @@ static void ...@@ -85,7 +85,7 @@ static void
const shared_ptr<runtime::HostTensor>& data = tensors.result_data[result_index]; const shared_ptr<runtime::HostTensor>& data = tensors.result_data[result_index];
const shared_ptr<runtime::Tensor>& result = results[result_index]; const shared_ptr<runtime::Tensor>& result = results[result_index];
result->read(data->get_data_ptr(), result->read(data->get_data_ptr(),
data->get_element_count() * data->get_element_type().size()); data->get_element_count() * data->get_element_type().size());
} }
current_iteration++; current_iteration++;
data_written = false; data_written = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment