Home
last modified time | relevance | path

Searched refs:new_layers (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/openmp/runtime/src/
Dkmp_dispatch_hier.h632 bool need_to_reallocate(int n, const kmp_hier_layer_e *new_layers, in need_to_reallocate()
639 if (info[i].type != new_layers[i]) in need_to_reallocate()
653 void allocate_hier(int n, const kmp_hier_layer_e *new_layers, in allocate_hier()
656 if (!need_to_reallocate(n, new_layers, new_scheds, new_chunks)) { in allocate_hier()
677 kmp_hier_layer_e layer = new_layers[i]; in allocate_hier()
915 kmp_hier_layer_e *new_layers, in __kmp_dispatch_init_hierarchy() argument
932 const char *layer = __kmp_get_hier_str(new_layers[i]); in __kmp_dispatch_init_hierarchy()
939 KMP_DEBUG_ASSERT(new_layers); in __kmp_dispatch_init_hierarchy()
980 sh->hier->allocate_hier(n, new_layers, new_scheds, new_chunks); in __kmp_dispatch_init_hierarchy()
/external/tensorflow/tensorflow/python/keras/engine/
Dfunctional.py856 new_nodes, new_layers = _map_subgraph_network(self.inputs, [symbolic_loss])
863 new_layers.append(add_loss_layer)
864 self._insert_layers(new_layers, new_nodes)
867 new_nodes, new_layers = _map_subgraph_network(self.inputs, [value])
872 new_layers.append(add_metric_layer)
873 self._insert_layers(new_layers, new_nodes)
/external/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc311 std::pair<size_t, size_t> new_layers = GetActiveLayers(bitrate_allocation); in SetSvcRates() local
316 const bool lower_layers_enabled = new_layers.first < current_layers.first; in SetSvcRates()
317 const bool higher_layers_enabled = new_layers.second > current_layers.second; in SetSvcRates()
318 const bool disabled_layers = new_layers.first > current_layers.first || in SetSvcRates()
319 new_layers.second < current_layers.second; in SetSvcRates()
327 if (current_layers != new_layers) { in SetSvcRates()
/external/webrtc/pc/
Dwebrtc_sdp.cc2432 std::vector<SimulcastLayer> new_layers; in RemoveRidsFromSimulcastLayerList() local
2435 new_layers.push_back(layer); in RemoveRidsFromSimulcastLayerList()
2439 if (!new_layers.empty()) { in RemoveRidsFromSimulcastLayerList()
2440 result.AddLayerWithAlternatives(new_layers); in RemoveRidsFromSimulcastLayerList()