Searched refs:layer_name_ (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/dsent/tech/
H A DTechModel.h75 bool isWireLayerExist(const String& layer_name_) const;
78 double calculateWireCapacitance(const String& layer_name_, double width_, double spacing_, double length_) const;
80 double calculateWireResistance(const String& layer_name_, double width_, double length_) const;
H A DTechModel.cc276 bool TechModel::isWireLayerExist(const String& layer_name_) const
279 it = m_available_wire_layers_->find(layer_name_);
288 double TechModel::calculateWireCapacitance(const String& layer_name_, double width_, double spacing_, double length_) const argument
291 double min_width = get("Wire->" + layer_name_ + "->MinWidth").toDouble();
292 double min_spacing = get("Wire->" + layer_name_ + "->MinSpacing").toDouble();
293 double metal_thickness = get("Wire->" + layer_name_ + "->MetalThickness").toDouble();
294 double dielec_thickness = get("Wire->" + layer_name_ + "->DielectricThickness").toDouble();
295 double dielec_const = get("Wire->" + layer_name_ + "->DielectricConstant").toDouble();
318 double TechModel::calculateWireResistance(const String& layer_name_, double width_, double length_) const argument
321 double min_width = get("Wire->" + layer_name_
[all...]

Completed in 6 milliseconds