SlideShare une entreprise Scribd logo
1  sur  12
HUAWEI TECHNOLOGIES CO., LTD.
www.huawei
.com
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X.
Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks //
Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
DOI: 10.15514/ISPRAS-2016-28(6)-10
Automatic Analysis, Decomposition and Parallel
O p t i m i z a t i o n o f
L a r g e
H o m o g e n e o u s
N e t w o r k s
ISPRAS Open 2016
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X.
A0
Signals of sector antennas A0 – A7
A1
A2
A3
A4
A5
A6
A7
Homogeneous Networks
Element Crossroad Switch Antenna
Optimized
integral index
Average speed of traffic
Average power of
prevalent radio signal
Correlation
formula
for 2 elements
1 / (1 + [elements quantity on the shortest path])
1 / (distance between
antennas)
WirelessWired
Communication Networks
Road network
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Background: Sector Planning with full optimization
Graph-based representation
Homogeneous network is represented as a weighted complete graph, where
• each vertex corresponds to network element
• each edge has weight equals to correlation between correspondent elements
Optimization loop:
1. Decomposition of network into
subnets by the rule of minimal
sum of crossing edges weights
2. Parallel optimization of
subnets
3. Update of network parameters
Main drawback:
Crossing edges are ignored
=> poor accuracy
Optimization of
all parameters
DECOMPOSITION
While stopping
criterion isn’t met
Thread
Thread
Full
network
2
- Subnets
Element
Agenda
-
1 2
1
1
1
1
1
1 2
2
2
2
2
2
UPDATE
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Idea 1: Alternative splitting
Optimization
While
stopping
criterion
is not met
Thread
Thread
Thread
Thread
Split
by split
Advantage: All crossing edges are taken into account
Discard light edges
under threshold
Alternative splits
Full
network
Reduced
network
1 2 3 4
1
2
3
4
1
2
3
4
1
2
3
4
- Subnets
Element
Agenda
-
1 2
3 4
UPDATE NETWORK
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
COMBINE NON-OVERLAPPING SUBNETS
Idea 2: Independent optimization
Advantage: Parallel optimization of the fully independent elements
Reduced
network
FOR EVERY
OPTIMIZED UNIT
FIND SUBNET
- Subnets
- Border element
- Optimized unit
Agenda
2
2
2
2
1
1
1
1
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Splitting with
threshold
Idea 3: Regulation of threshold
Thresholdincreasing
Optimization
1 subnet
2 subnets
3 subnets
Optimized unit = 2 elements
Advantage: Optimization process is regulated by threshold
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Optimization of
independent elements
UPDATE NETWORK
If stop-
ping
criterion
is not met
Thread
Thread
Alternative splits of network into non-overlapping subnets for optimized units:
Split by
split
DISCARD
EDGES UNDER
THRESHOLD
DECOMPOSITION
Full cycle of alternative splitting with regulated threshold
If threshold
under limit
increase its
value and
continue
Reduced
network
…
1
1
1
2
2
2
1
1
2
Full
network
- Subnets
- Border element
- Optimized unit
Agenda
1
1
1
1
1
2
2
2
2
2
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Optimization process regulation
Start
Quantity of
alternative
calculations
Com-
plexity
Rough search of global optimum in
small number of complex subnets
(avoiding of stuck in local optimum)
Precise search of optimums in
big number of simple subnets
(maximal precision at the end)
Quantity
Strength of
distant
interactions
Precision of
optimizing
procedure
Subnets
Quantity of processes =
available cores
Precision of
optimization
End
Usage of all computational
resources on computer / cluster
Colored arrows ( ) – increase (up) or decrease (down) of parameter value
Empty arrows – impact on optimization process
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Optimization of mobile network coverage and quality
High optimization complexity:
300 antennas * 4 parameters, n
states of parameter => n1200 states
Regulated parameters of
sector antenna: power, height,
tilt, azimuth
Initial subnet Optimized subnet
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Alternative splitting vs. Sector planning
n – number of optimized areas in network
Pi – the power of the prevalent signal in i-th area
Ii – the power of the other (interfering) signals in i-th area
Ni – other noise in i-th area
Optimized integral index – average
Signal to Interference plus Noise Ratio:
)
N+I
P
n
1
(log•10=SINR ∑
n
1=i ii
i
10
Optimizing procedure – modified
Simulated Annealing:
procedure optimize(S0, precision) {
Snew := S0
step := maxStep ∙ (1 – precision)
Sgen := random neighbor of S0 within step
t := T(1 – precision)
if A(E(S0), E(Sgen), t) ≥ random(0, 1) then Snew := Sgen
Output: state Snew
}
S0, Sgen, Snew – current, generated, new states of subnet
maxStep – maximal value of step
T, E, A – temperature, energy, acceptance functions
9 times faster
1 hour – SINR 15 % higher (p < 0.01)
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
Benefits of Independent optimization of alternatives
• Faster optimization due to reduction of
optimization complexity and efficient usage of
all computational resources
• Better quality of optimization due to
progressive shift of optimization strategy from
rough search of global optimum at the
beginning of optimization process to precise
search of optimum at the end of optimization
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
HUAWEI TECHNOLOGIES CO., LTD.
www.huawei
.com
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X.
Automatic Analysis, Decomposition and Parallel
Optimization of Large Homogeneous Networks //
Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
DOI: 10.15514/ISPRAS-2016-28(6)-10
Automatic Analysis, Decomposition and Parallel
O p t i m i z a t i o n o f
L a r g e
H o m o g e n e o u s
N e t w o r k s
ISPRAS Open 2016
Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X.

Contenu connexe

Tendances

Switching Techniques
Switching TechniquesSwitching Techniques
Switching Techniquestameemyousaf
 
Resource reservation protocol
Resource reservation protocolResource reservation protocol
Resource reservation protocolAtakan ATAK
 
Power Aware Routing in Adhoc Networks
Power Aware Routing in Adhoc NetworksPower Aware Routing in Adhoc Networks
Power Aware Routing in Adhoc NetworksPradeep Kumar TS
 
Deep Dive 5G NR-RAN Release 2018 Q4.pptx
Deep Dive 5G NR-RAN Release 2018 Q4.pptxDeep Dive 5G NR-RAN Release 2018 Q4.pptx
Deep Dive 5G NR-RAN Release 2018 Q4.pptxDaniel Estrada
 
Destination Sequenced Distance Vector Routing (DSDV)
Destination Sequenced Distance Vector Routing (DSDV)Destination Sequenced Distance Vector Routing (DSDV)
Destination Sequenced Distance Vector Routing (DSDV)ArunChokkalingam
 
Traffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access ProtocolTraffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access ProtocolGaurav Chauhan
 
Localization & management of sensor networks
Localization & management of sensor networksLocalization & management of sensor networks
Localization & management of sensor networksRushin Shah
 
Zone Routing Protocol
Zone Routing ProtocolZone Routing Protocol
Zone Routing Protocolnitss007
 
Introduction to sandvine dpi
Introduction to sandvine dpiIntroduction to sandvine dpi
Introduction to sandvine dpiMohammed Abdallah
 
Fisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol OverviewFisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol OverviewYoav Francis
 
Routing protocols for ad hoc wireless networks
Routing protocols for ad hoc wireless networks Routing protocols for ad hoc wireless networks
Routing protocols for ad hoc wireless networks Divya Tiwari
 

Tendances (20)

OLSR | Optimized Link State Routing Protocol
OLSR | Optimized Link State Routing ProtocolOLSR | Optimized Link State Routing Protocol
OLSR | Optimized Link State Routing Protocol
 
Switching Techniques
Switching TechniquesSwitching Techniques
Switching Techniques
 
Resource reservation protocol
Resource reservation protocolResource reservation protocol
Resource reservation protocol
 
Power Aware Routing in Adhoc Networks
Power Aware Routing in Adhoc NetworksPower Aware Routing in Adhoc Networks
Power Aware Routing in Adhoc Networks
 
Hsdpa analysis
Hsdpa analysisHsdpa analysis
Hsdpa analysis
 
Deep Dive 5G NR-RAN Release 2018 Q4.pptx
Deep Dive 5G NR-RAN Release 2018 Q4.pptxDeep Dive 5G NR-RAN Release 2018 Q4.pptx
Deep Dive 5G NR-RAN Release 2018 Q4.pptx
 
Destination Sequenced Distance Vector Routing (DSDV)
Destination Sequenced Distance Vector Routing (DSDV)Destination Sequenced Distance Vector Routing (DSDV)
Destination Sequenced Distance Vector Routing (DSDV)
 
IS-IS Protocol Introduction
IS-IS Protocol IntroductionIS-IS Protocol Introduction
IS-IS Protocol Introduction
 
AODV protocol
AODV protocolAODV protocol
AODV protocol
 
Traffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access ProtocolTraffic-adaptive Medium Access Protocol
Traffic-adaptive Medium Access Protocol
 
Congestion control in TCP
Congestion control in TCPCongestion control in TCP
Congestion control in TCP
 
Localization & management of sensor networks
Localization & management of sensor networksLocalization & management of sensor networks
Localization & management of sensor networks
 
Data aggregation in wireless sensor networks
Data aggregation in wireless sensor networksData aggregation in wireless sensor networks
Data aggregation in wireless sensor networks
 
Zone Routing Protocol
Zone Routing ProtocolZone Routing Protocol
Zone Routing Protocol
 
TinyOS
TinyOSTinyOS
TinyOS
 
Introduction to sandvine dpi
Introduction to sandvine dpiIntroduction to sandvine dpi
Introduction to sandvine dpi
 
Fisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol OverviewFisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol Overview
 
Handover 3g
Handover 3gHandover 3g
Handover 3g
 
Olsr protocol ppt
Olsr protocol pptOlsr protocol ppt
Olsr protocol ppt
 
Routing protocols for ad hoc wireless networks
Routing protocols for ad hoc wireless networks Routing protocols for ad hoc wireless networks
Routing protocols for ad hoc wireless networks
 

Similaire à Network optimization

Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...
Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...
Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...IRJET Journal
 
Design and Fabrication of S-Band MIC Power Amplifier
Design and Fabrication of S-Band MIC Power AmplifierDesign and Fabrication of S-Band MIC Power Amplifier
Design and Fabrication of S-Band MIC Power Amplifierijcisjournal
 
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOTPSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOTIRJET Journal
 
Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...IJEEE
 
proceedings.pdf
proceedings.pdfproceedings.pdf
proceedings.pdfAyaHelmy7
 
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATAIMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATAijasuc
 
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATAIMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATAijasuc
 
Analog VLSI Circuit optimization Technique .pptx
Analog VLSI Circuit optimization Technique .pptxAnalog VLSI Circuit optimization Technique .pptx
Analog VLSI Circuit optimization Technique .pptxramnits13
 
Convergence Problems Of Contingency Analysis In Electrical Power Transmission...
Convergence Problems Of Contingency Analysis In Electrical Power Transmission...Convergence Problems Of Contingency Analysis In Electrical Power Transmission...
Convergence Problems Of Contingency Analysis In Electrical Power Transmission...CSCJournals
 
Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...
Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...
Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...Antonio Mora
 
Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...
Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...
Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...IRJET Journal
 
Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...
Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...
Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...IRJET Journal
 
Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...
Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...
Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...ijngnjournal
 
performance analysis of different radiation pattern using genetic algorithm
performance analysis of different radiation pattern using genetic algorithmperformance analysis of different radiation pattern using genetic algorithm
performance analysis of different radiation pattern using genetic algorithmijtsrd
 
Mini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIERMini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIERj naga sai
 
Simulation of EMI Filters Using Matlab
Simulation of EMI Filters Using MatlabSimulation of EMI Filters Using Matlab
Simulation of EMI Filters Using Matlabinventionjournals
 

Similaire à Network optimization (20)

Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...
Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...
Design Band Pass FIR Digital Filter for Cut off Frequency Calculation Using A...
 
Design and Fabrication of S-Band MIC Power Amplifier
Design and Fabrication of S-Band MIC Power AmplifierDesign and Fabrication of S-Band MIC Power Amplifier
Design and Fabrication of S-Band MIC Power Amplifier
 
ICIECA 2014 Paper 16
ICIECA 2014 Paper 16ICIECA 2014 Paper 16
ICIECA 2014 Paper 16
 
Gene's law
Gene's lawGene's law
Gene's law
 
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOTPSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
PSO-GSA Tuned Dynamic Allocation in Wireless Video Sensor Networks for IOT
 
Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...
 
Ijetcas14 562
Ijetcas14 562Ijetcas14 562
Ijetcas14 562
 
Springer
SpringerSpringer
Springer
 
proceedings.pdf
proceedings.pdfproceedings.pdf
proceedings.pdf
 
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATAIMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
 
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATAIMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
IMPROVE ENERGY EFFICIENCY ROUTING IN WSN BY USING AUTOMATA
 
Analog VLSI Circuit optimization Technique .pptx
Analog VLSI Circuit optimization Technique .pptxAnalog VLSI Circuit optimization Technique .pptx
Analog VLSI Circuit optimization Technique .pptx
 
Convergence Problems Of Contingency Analysis In Electrical Power Transmission...
Convergence Problems Of Contingency Analysis In Electrical Power Transmission...Convergence Problems Of Contingency Analysis In Electrical Power Transmission...
Convergence Problems Of Contingency Analysis In Electrical Power Transmission...
 
Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...
Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...
Applying Ant Colony Optimization for Service Function Chaining in a 5G Networ...
 
Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...
Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...
Performance Evaluation of Artificial Ant Colony using Zone Based Routing Appr...
 
Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...
Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...
Design Low Pass FIR Digital Filter for Cut off Frequency Calculation Using Ar...
 
Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...
Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...
Trend-Based Networking Driven by Big Data Telemetry for Sdn and Traditional N...
 
performance analysis of different radiation pattern using genetic algorithm
performance analysis of different radiation pattern using genetic algorithmperformance analysis of different radiation pattern using genetic algorithm
performance analysis of different radiation pattern using genetic algorithm
 
Mini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIERMini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIER
 
Simulation of EMI Filters Using Matlab
Simulation of EMI Filters Using MatlabSimulation of EMI Filters Using Matlab
Simulation of EMI Filters Using Matlab
 

Dernier

➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men 🔝Sambalpur🔝 Esc...
➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men  🔝Sambalpur🔝   Esc...➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men  🔝Sambalpur🔝   Esc...
➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men 🔝Sambalpur🔝 Esc...amitlee9823
 
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...only4webmaster01
 
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...karishmasinghjnh
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...amitlee9823
 
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...amitlee9823
 
Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...
Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...
Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...gajnagarg
 
Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...gajnagarg
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteedamy56318795
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNKTimothy Spann
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...amitlee9823
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 

Dernier (20)

➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men 🔝Sambalpur🔝 Esc...
➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men  🔝Sambalpur🔝   Esc...➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men  🔝Sambalpur🔝   Esc...
➥🔝 7737669865 🔝▻ Sambalpur Call-girls in Women Seeking Men 🔝Sambalpur🔝 Esc...
 
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
 
Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...
Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...
Just Call Vip call girls Erode Escorts ☎️9352988975 Two shot with one girl (E...
 
Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls Mysore Escorts ☎️9352988975 Two shot with one girl (...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 

Network optimization

  • 1. HUAWEI TECHNOLOGIES CO., LTD. www.huawei .com Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152. DOI: 10.15514/ISPRAS-2016-28(6)-10 Automatic Analysis, Decomposition and Parallel O p t i m i z a t i o n o f L a r g e H o m o g e n e o u s N e t w o r k s ISPRAS Open 2016 Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X.
  • 2. A0 Signals of sector antennas A0 – A7 A1 A2 A3 A4 A5 A6 A7 Homogeneous Networks Element Crossroad Switch Antenna Optimized integral index Average speed of traffic Average power of prevalent radio signal Correlation formula for 2 elements 1 / (1 + [elements quantity on the shortest path]) 1 / (distance between antennas) WirelessWired Communication Networks Road network Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 3. Background: Sector Planning with full optimization Graph-based representation Homogeneous network is represented as a weighted complete graph, where • each vertex corresponds to network element • each edge has weight equals to correlation between correspondent elements Optimization loop: 1. Decomposition of network into subnets by the rule of minimal sum of crossing edges weights 2. Parallel optimization of subnets 3. Update of network parameters Main drawback: Crossing edges are ignored => poor accuracy Optimization of all parameters DECOMPOSITION While stopping criterion isn’t met Thread Thread Full network 2 - Subnets Element Agenda - 1 2 1 1 1 1 1 1 2 2 2 2 2 2 UPDATE Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 4. Idea 1: Alternative splitting Optimization While stopping criterion is not met Thread Thread Thread Thread Split by split Advantage: All crossing edges are taken into account Discard light edges under threshold Alternative splits Full network Reduced network 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 - Subnets Element Agenda - 1 2 3 4 UPDATE NETWORK Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 5. COMBINE NON-OVERLAPPING SUBNETS Idea 2: Independent optimization Advantage: Parallel optimization of the fully independent elements Reduced network FOR EVERY OPTIMIZED UNIT FIND SUBNET - Subnets - Border element - Optimized unit Agenda 2 2 2 2 1 1 1 1 Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 6. Splitting with threshold Idea 3: Regulation of threshold Thresholdincreasing Optimization 1 subnet 2 subnets 3 subnets Optimized unit = 2 elements Advantage: Optimization process is regulated by threshold Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 7. Optimization of independent elements UPDATE NETWORK If stop- ping criterion is not met Thread Thread Alternative splits of network into non-overlapping subnets for optimized units: Split by split DISCARD EDGES UNDER THRESHOLD DECOMPOSITION Full cycle of alternative splitting with regulated threshold If threshold under limit increase its value and continue Reduced network … 1 1 1 2 2 2 1 1 2 Full network - Subnets - Border element - Optimized unit Agenda 1 1 1 1 1 2 2 2 2 2 Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 8. Optimization process regulation Start Quantity of alternative calculations Com- plexity Rough search of global optimum in small number of complex subnets (avoiding of stuck in local optimum) Precise search of optimums in big number of simple subnets (maximal precision at the end) Quantity Strength of distant interactions Precision of optimizing procedure Subnets Quantity of processes = available cores Precision of optimization End Usage of all computational resources on computer / cluster Colored arrows ( ) – increase (up) or decrease (down) of parameter value Empty arrows – impact on optimization process Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 9. Optimization of mobile network coverage and quality High optimization complexity: 300 antennas * 4 parameters, n states of parameter => n1200 states Regulated parameters of sector antenna: power, height, tilt, azimuth Initial subnet Optimized subnet Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 10. Alternative splitting vs. Sector planning n – number of optimized areas in network Pi – the power of the prevalent signal in i-th area Ii – the power of the other (interfering) signals in i-th area Ni – other noise in i-th area Optimized integral index – average Signal to Interference plus Noise Ratio: ) N+I P n 1 (log•10=SINR ∑ n 1=i ii i 10 Optimizing procedure – modified Simulated Annealing: procedure optimize(S0, precision) { Snew := S0 step := maxStep ∙ (1 – precision) Sgen := random neighbor of S0 within step t := T(1 – precision) if A(E(S0), E(Sgen), t) ≥ random(0, 1) then Snew := Sgen Output: state Snew } S0, Sgen, Snew – current, generated, new states of subnet maxStep – maximal value of step T, E, A – temperature, energy, acceptance functions 9 times faster 1 hour – SINR 15 % higher (p < 0.01) Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 11. Benefits of Independent optimization of alternatives • Faster optimization due to reduction of optimization complexity and efficient usage of all computational resources • Better quality of optimization due to progressive shift of optimization strategy from rough search of global optimum at the beginning of optimization process to precise search of optimum at the end of optimization Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152.
  • 12. HUAWEI TECHNOLOGIES CO., LTD. www.huawei .com Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X. Automatic Analysis, Decomposition and Parallel Optimization of Large Homogeneous Networks // Proc. ISP RAS, 2016, vol. 28, issue 6, pp. 141-152. DOI: 10.15514/ISPRAS-2016-28(6)-10 Automatic Analysis, Decomposition and Parallel O p t i m i z a t i o n o f L a r g e H o m o g e n e o u s N e t w o r k s ISPRAS Open 2016 Ignatov D.Yu., Filippov A.N., Ignatov A.D., Zhang X.

Notes de l'éditeur

  1. Presentation of the new algorithm of Homogeneous Network Optimization
  2. The life of the modern world essentially depends on the work of the large artificial networks, such as networks of roads, pipelines, wired and wireless communication systems. The support of their effective functioning requires permanent screening and optimization. The network consists of the active elements, such as crossroads, switches or antennas, and can be optimized by the integral indices, such as average speed of traffic in crossroads or switches, or average power of prevalent radio signal of antennas. To perform optimization the large networks are decomposed into subnets on the basis of correlation between their elements.
  3. For example in the method of sector planning with full optimization the Homogeneous Network is represented as a weighted complete graph, where each vertex corresponds to network element and each edge has weight equals to correlation between connected elements. In optimization loop : 1) Network is decomposed into subnets by the rule of minimal sum of crossing edges weights; 2) Subnets are optimized in parallel processes; 3) Network parameters are updated. Main drawback: crossing edges are ignored, and so accuracy of optimization is poor.
  4. Idea 1: alternative splitting. In complete graph of network the light edges under predefined threshold are discarded and we've got reduced network. Then network is decomposed into alternative splits. Algorithm iterates through these splits, and perform optimization of subnets in separate threads.
  5. Idea 2: independent optimization. In reduced network the optimized units are selected. For every unit we find subnet consisting of optimized unit and all connected to it elements. Then non-overlapping subnets are combined into alternative splits. In every split only independent elements are optimized. As you can see while we move through all splits we optimize all elements, but every optimization effects only independent parts of network. Advantage: parallel optimization of the most independent elements.
  6. Idea 3: regulation of threshold. Decomposition begins with the minimal level of threshold and as a result just one subnet is selected in every split . As you can see the optimized unit consists of 2 elements and all other elements are connected to it. When threshold is increased then the number of subnets is increased and their complexity is decreased. Advantage: optimization process is regulated by threshold.
  7. The full cycle of alternative splitting with regulated threshold includes discarding of edges under threshold, alternative splitting of reduced network on the basis of optimized units, parallel optimization of the most independent parts of networks as long as optimization gives improvement. After that, the threshold is increased and optimization is performed on the next level of splitting.
  8. Optimization process regulation includes increase of networks quantity and decrease of the number of alternative calculations during optimization process, so that the quantity of parallel processes equals to quantity of available cores and we use all computational resources available on computer or cluster. From other side, the complexity of subnets and the strength of their distant interactions are decreased and we increase precision of optimizing procedure. As a result during optimization the accuracy is increased and we progressively move from rough search of global optimum in small number of complex subnets to precise search of optimum in big number of simple subnets. In such way we avoid the stack in local optimum at the beginning of optimization and have the best precision at the end.
  9. To demonstrate the efficiency of proposed approach, the optimization of mobile network is implemented with visualization of quality of radio signal. As you can see the sector antennas transmit radio signal (green and yellow colors). In initial network there are red problem areas with low quality of radio signal. Every antenna was optimized by 4 regulated parameters, each with n states. So, the number of states of full network is n^1200 – optimization complexity is high. After optimization is finished the red areas are disappeared and the quality of radio signals is increased.
  10. As an optimized integral index we use Signal to Interference plus Noise Ratio (SINR). As an optimizing procedure – modified Simulated Annealing, which takes as input precision parameter. On the plot you can see that the alternative splitting gives speed-up 9 times, and after 1 hour shows better quality of radio signal – SINR is 15 % higher in logarithmic scale.
  11. Thus, the benefits of proposed method for independent optimization of alternatives: 1) Faster optimization due to reduction of optimization complexity and efficient usage of all computational resources; 2) Better quality of optimization due to progressive shift of optimization strategy from rough search of global optimum at the beginning of optimization process to precise search of optimum at the end of optimization.
  12. Presentation of the new algorithm of Homogeneous Network Optimization