I am running a single network model in R. I want to utilize parallel processing in R to run it. I see examples online but they are usually for multiple operations.
model.2 <- ergmm(network.M.CS ~ euclidean(d=2, G=2)+
                  nodematch("Party", diff = F) + 
                  nodematch("State", diff = F) + 
                  absdiff("Ideology")+
                  edgecov(Donor.Network), 
                response = "Norm.Num.Bill.CS", 
                family = c("Bernoulli"),
                control=ergmm.control(burnin=20000, sample.size= 4000,interval=10),
                verbose=T)
summary(model.2)
As an example, this is the model I would like to run. Any tips you can offer that would allow me to use parallel processing on this single model would be much appreciated. Thank you!
 
    