- File:
-
- 1 edited
-
libcfa/src/concurrency/thread.cfa (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/thread.cfa
r1959528 r2210cfc 10 10 // Created On : Tue Jan 17 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jan 12 18:28:18202213 // Update Count : 3512 // Last Modified On : Mon Jan 10 17:05:35 2022 13 // Update Count : 28 14 14 // 15 15 … … 27 27 uint64_t thread_rand(); 28 28 29 extern uint32_t __ global_random_seed;29 extern uint32_t __thread_seed; // global thread seed 30 30 31 31 //----------------------------------------------------------------------------- … … 41 41 self_mon.owner = &this; 42 42 self_mon.recursion = 1; 43 random_state = __thread_seed; 43 44 self_mon_p = &self_mon; 44 45 curr_cluster = &cl; … … 47 48 preferred = ready_queue_new_preferred(); 48 49 last_proc = 0p; 49 random_state = __global_random_seed;50 50 #if defined( __CFA_WITH_VERIFY__ ) 51 51 canary = 0x0D15EA5E0D15EA5Ep; … … 180 180 return ret; 181 181 } 182 182 183 183 #define GENERATOR LCG 184 184 185 static inline uint32_t MarsagliaXor( uint32_t & state ) { 186 uint32_t ret = state; 185 inline uint32_t MarsagliaXor( uint32_t & state ) { 187 186 state ^= state << 6; 188 187 state ^= state >> 21; 189 188 state ^= state << 7; 190 return ret;189 return state; 191 190 } // MarsagliaXor 192 191 193 static inline uint32_t LCG( uint32_t & state ) { // linear congruential generator 194 uint32_t ret = state; 195 state = 36969 * (state & 65535) + (state >> 16); // 36969 is NOT prime! No not change it! 196 return ret; 192 inline uint32_t LCG( uint32_t & state ) { // linear congruential generator 193 return state = 36969 * (state & 65535) + (state >> 16); // 36969 is NOT prime! 197 194 } // LCG 198 195 199 void set_seed( uint32_t seed ) { active_thread()->random_state = seed; __ global_random_seed = seed; }196 void set_seed( uint32_t seed ) { active_thread()->random_state = seed; __thread_seed = seed; } 200 197 uint32_t prng( void ) { return GENERATOR( active_thread()->random_state ); } // [0,UINT_MAX] 201 198
Note:
See TracChangeset
for help on using the changeset viewer.