@@ -120,10 +120,12 @@ int ref_partition_t::init_ref(const std::vector<size_t> &graph_in_ports,
120
120
}
121
121
}
122
122
123
- // Displace the data generated by the driver filling functions with
124
- // values supplied from the dg object. Otherwise, the values for
125
- // reference would diverge from the values passed to the Graph API.
126
- SAFE (ref_prim->displace_scales (), WARN);
123
+ if (!has_bench_mode_modifier (mode_modifier_t ::no_ref_memory)) {
124
+ // Displace the data generated by the driver filling functions with
125
+ // values supplied from the dg object. Otherwise, the values for
126
+ // reference would diverge from the values passed to the Graph API.
127
+ SAFE (ref_prim->displace_scales (), WARN);
128
+ }
127
129
128
130
// Initialze the rest ops if current status is UNTESTED or EXECUTED
129
131
// otherwise there is no need to init memory for the rest ops.
@@ -145,35 +147,50 @@ int ref_partition_t::init_ref(const std::vector<size_t> &graph_in_ports,
145
147
}
146
148
}
147
149
148
- // displace data if needed
149
- for (const auto &entry : lt_id_2_mems_) {
150
- SAFE_V (data_displacer.displace_input_data (
151
- entry.first , const_cast <dnn_mem_t &>(entry.second ), res));
150
+ if (!has_bench_mode_modifier (mode_modifier_t ::no_ref_memory)) {
151
+ // displace data if needed
152
+ for (const auto &entry : lt_id_2_mems_) {
153
+ SAFE_V (data_displacer.displace_input_data (
154
+ entry.first , const_cast <dnn_mem_t &>(entry.second ), res));
155
+ }
152
156
}
157
+ return OK;
158
+ }
159
+
160
+ int ref_partition_t::init_graph_mem (
161
+ partition_mem_map_t &partition_mem_map, res_t *res) {
153
162
154
163
// init graph input/oputput memory from lt_id_2_mems_
155
164
for (const auto &id : partition_in_ids_) {
156
- if (lt_id_2_mems_.find (id) == lt_id_2_mems_.end ()) {
157
- BENCHDNN_PRINT (0 , " Fail: cannot find memory for %zu\n " , id);
158
- res->state = FAILED;
159
- return FAIL;
160
- }
161
- partition_mem_map.emplace (id,
162
- dnn_graph_mem_t (
163
- lt_id_2_mems_.at (id), lt_id_2_lt_.at (id), true ));
165
+ if (!has_bench_mode_modifier (mode_modifier_t ::no_ref_memory)) {
166
+ if (lt_id_2_mems_.find (id) == lt_id_2_mems_.end ()) {
167
+ BENCHDNN_PRINT (0 , " Fail: cannot find memory for %zu\n " , id);
168
+ res->state = FAILED;
169
+ return FAIL;
170
+ }
171
+ partition_mem_map.emplace (id,
172
+ dnn_graph_mem_t (
173
+ lt_id_2_mems_.at (id), lt_id_2_lt_.at (id), true ));
174
+ } else
175
+ partition_mem_map.emplace (
176
+ id, dnn_graph_mem_t (lt_id_2_lt_.at (id), true ));
164
177
}
165
178
for (const auto &id : partition_out_ids_) {
166
- if (fake_lt_ids_.find (id) != fake_lt_ids_.end ()) {
167
- partition_mem_map.emplace (
168
- id, dnn_graph_mem_t ({}, lt_id_2_lt_.at (id), false , true ));
169
- } else if (lt_id_2_mems_.find (id) == lt_id_2_mems_.end ()) {
170
- BENCHDNN_PRINT (0 , " Fail: cannot find memory for %zu\n " , id);
171
- res->state = FAILED;
172
- return FAIL;
179
+ if (!has_bench_mode_modifier (mode_modifier_t ::no_ref_memory)) {
180
+ if (fake_lt_ids_.find (id) != fake_lt_ids_.end ()) {
181
+ partition_mem_map.emplace (id,
182
+ dnn_graph_mem_t ({}, lt_id_2_lt_.at (id), false , true ));
183
+ } else if (lt_id_2_mems_.find (id) == lt_id_2_mems_.end ()) {
184
+ BENCHDNN_PRINT (0 , " Fail: cannot find memory for %zu\n " , id);
185
+ res->state = FAILED;
186
+ return FAIL;
187
+ } else
188
+ partition_mem_map.emplace (id,
189
+ dnn_graph_mem_t (lt_id_2_mems_.at (id),
190
+ lt_id_2_lt_.at (id), false ));
173
191
} else
174
- partition_mem_map.emplace (id,
175
- dnn_graph_mem_t (
176
- lt_id_2_mems_.at (id), lt_id_2_lt_.at (id), false ));
192
+ partition_mem_map.emplace (
193
+ id, dnn_graph_mem_t (lt_id_2_lt_.at (id), false ));
177
194
}
178
195
179
196
return OK;
0 commit comments