V=10;U=10;
R=rand(V,U);
temp=rand(V,U);
indicator=temp>0.5;
R=R.indicator1e0;
comp_ub=4*ones(V,1);
task_strength=rand(U,1)*400;
task_strength_mat=repmat(task_strength.‘,V,1);
task_cycle=rand(U,1)*1e3;
task_cycle_mat=repmat(task_cycle.’,V,1);
task_off_init=rand(V,U).*indicator;
temp=sum(task_off_init,1);
temp=repmat(temp,V,1);
task_off_sqrt=sqrt(task_off_init./temp);
task_off_sqrt_rec=0;
task_off_diff=sum(sum((task_off_sqrt_rec-task_off_sqrt).^2))/V/U;
eps=1e-4;
while(task_off_diff>=1e-4)
task_off_sqrt_rec=task_off_sqrt;
cvx_solver mosek_6
cvx_begin
variable task_off(V,U)
variable comp_allo(V,U)
variable task_off_sqrt(V,U)
variable time_min_opt
variable rho_1(V,U)
variable rho_2(V,U)
minimize(time_min_opt)
subject to
comp_allo>=0;
sum(comp_allo,2)<=comp_ub;
task_off_sqrt>=-ones(V,U);
task_off_sqrt<=ones(V,U);
sum(task_off_sqrt.^2,1)<=ones(1,U);
sum(2*task_off_sqrt_rec.*task_off_sqrt-task_off_sqrt_rec.^2,1)>=ones(1,U);
rho_1>=0;
rho_2>=0;
rho_1+rho_2<=time_min_opt*ones(V,U);
task_strength_mat.*(task_off_sqrt.^2)-rho_1.*R<=0;
for loop_v=1:V
for loop_u=1:U
norm([comp_allo(loop_v,loop_u)-rho_2(loop_v,loop_u);sqrt(4*task_strength_mat(loop_v,loop_u)*task_cycle_mat(loop_v,loop_u))*task_off_sqrt(loop_v,loop_u)])<=comp_allo(loop_v,loop_u)+rho_2(loop_v,loop_u);
end
end
cvx_end
task_off_diff=sum(sum((task_off_sqrt_rec-task_off_sqrt).^2))/V/U;
end