mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
Merge branch 'develop' into feature/qed-fvol
This commit is contained in:
commit
7a327a3f28
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,6 +9,7 @@
|
|||||||
################
|
################
|
||||||
*~
|
*~
|
||||||
*#
|
*#
|
||||||
|
*.sublime-*
|
||||||
|
|
||||||
# Precompiled Headers #
|
# Precompiled Headers #
|
||||||
#######################
|
#######################
|
||||||
|
@ -166,7 +166,7 @@ void GeneticScheduler<T>::initPopulation(void)
|
|||||||
{
|
{
|
||||||
auto p = graph_.topoSort(gen_);
|
auto p = graph_.topoSort(gen_);
|
||||||
|
|
||||||
population_.emplace(func_(p), p);
|
population_.insert(std::make_pair(func_(p), p));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -180,8 +180,8 @@ void GeneticScheduler<T>::doCrossover(void)
|
|||||||
crossover(c1, c2, p1, p2);
|
crossover(c1, c2, p1, p2);
|
||||||
PARALLEL_CRITICAL
|
PARALLEL_CRITICAL
|
||||||
{
|
{
|
||||||
population_.emplace(func_(c1), c1);
|
population_.insert(std::make_pair(func_(c1), c1));
|
||||||
population_.emplace(func_(c2), c2);
|
population_.insert(std::make_pair(func_(c2), c2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -200,7 +200,7 @@ void GeneticScheduler<T>::doMutation(void)
|
|||||||
mutation(m, it->second);
|
mutation(m, it->second);
|
||||||
PARALLEL_CRITICAL
|
PARALLEL_CRITICAL
|
||||||
{
|
{
|
||||||
population_.emplace(func_(m), m);
|
population_.insert(std::make_pair(func_(m), m));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -386,7 +386,7 @@ void InsertSlice(Lattice<vobj> &lowDim,Lattice<vobj> & higherDim,int slice, int
|
|||||||
}
|
}
|
||||||
|
|
||||||
// the above should guarantee that the operations are local
|
// the above should guarantee that the operations are local
|
||||||
//PARALLEL_FOR_LOOP
|
PARALLEL_FOR_LOOP
|
||||||
for(int idx=0;idx<lg->lSites();idx++){
|
for(int idx=0;idx<lg->lSites();idx++){
|
||||||
std::vector<int> lcoor(nl);
|
std::vector<int> lcoor(nl);
|
||||||
std::vector<int> hcoor(nh);
|
std::vector<int> hcoor(nh);
|
||||||
@ -428,7 +428,7 @@ void ExtractSlice(Lattice<vobj> &lowDim, Lattice<vobj> & higherDim,int slice, in
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// the above should guarantee that the operations are local
|
// the above should guarantee that the operations are local
|
||||||
//PARALLEL_FOR_LOOP
|
PARALLEL_FOR_LOOP
|
||||||
for(int idx=0;idx<lg->lSites();idx++){
|
for(int idx=0;idx<lg->lSites();idx++){
|
||||||
std::vector<int> lcoor(nl);
|
std::vector<int> lcoor(nl);
|
||||||
std::vector<int> hcoor(nh);
|
std::vector<int> hcoor(nh);
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
AM_LDFLAGS += -L../../extras/hadrons
|
AM_LDFLAGS += -L../../extras/Hadrons
|
||||||
|
|
||||||
include Make.inc
|
include Make.inc
|
||||||
|
Loading…
Reference in New Issue
Block a user