Skip to content
Snippets Groups Projects
Commit ee629fb0 authored by Ezekiel Dohmen's avatar Ezekiel Dohmen
Browse files

Removing uneeded indentation

parent 6c18de1e
No related branches found
No related tags found
3 merge requests!439RCG 5.0 release fro deb 10,!350Merge branch 'branch-4.2' into master-branch-4.2-merge,!349Adding Noise module parameter that will allow the designer to specify a seed in order to re-run with the same RNG, also initializing the RNG with a tsc based seed by default. Updating some language around seeding the noise part.
......@@ -89,9 +89,9 @@ sub frontEndInitCode {
#If we don't have an explicit seed set, get one from the tsc register
if ( $::noiseGeneratorSeed eq "none" ) {
$calcExp .= " rdtscl(noise_seed);\n";
$calcExp .= " rdtscl(noise_w);\n";
$calcExp .= " noise_seed |= (noise_w << 32UL);\n";
$calcExp .= "rdtscl(noise_seed);\n";
$calcExp .= "rdtscl(noise_w);\n";
$calcExp .= "noise_seed |= (noise_w << 32UL);\n";
}
else {
$calcExp .= "noise_seed = " . $::noiseGeneratorSeed . "UL;\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment