@@ -185,9 +185,9 @@ TEST_F(NGraphExecTest, Axpy) {
185
185
t_y->write (&v_x, sizeof (v_x));
186
186
187
187
// Execute the nGraph function.
188
- auto exec = backend->compile (ng_function);
188
+ auto exec = backend->Compile (ng_function);
189
189
vector<shared_ptr<ng::runtime::Tensor>> outputs;
190
- exec->call ({t_x, t_y}, outputs);
190
+ exec->Call ({t_x, t_y}, outputs);
191
191
192
192
for (size_t i = 0 ; i < ng_function->get_output_size (); i++) {
193
193
DumpNGTensor<float >(cout, ng_function->get_output_op (i)->get_name (),
@@ -240,9 +240,9 @@ TEST_F(NGraphExecTest, Axpy8bit) {
240
240
t_y->write (&v_x, sizeof (v_x));
241
241
242
242
// Execute the nGraph function.
243
- auto exec = backend->compile (ng_function);
243
+ auto exec = backend->Compile (ng_function);
244
244
vector<shared_ptr<ng::runtime::Tensor>> outputs;
245
- exec->call ({t_x, t_y}, outputs);
245
+ exec->Call ({t_x, t_y}, outputs);
246
246
247
247
for (size_t i = 0 ; i < ng_function->get_output_size (); i++) {
248
248
DumpNGTensor<int8>(cout, ng_function->get_output_op (i)->get_name (),
0 commit comments