Bitcoin Forum
June 25, 2024, 12:42:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: December 27, 2017, 06:19:41 AM
In the echo hash I replaced 4 shift and 3 eor operations by 1 mul, I also removed 1 andmask by using an eor trick.

OLD:
         uint32_t t;
         t = ((ab & 0x80808080) >> 7);
         uint32_t abx = t<<4 ^ t<<3 ^ t<<1 ^ t;
         t = ((bc & 0x80808080) >> 7);
         uint32_t bcx = t<<4 ^ t<<3 ^ t<<1 ^ t;
         t = ((cd & 0x80808080) >> 7);
         uint32_t cdx = t<<4 ^ t<<3 ^ t<<1 ^ t;
         abx ^= ((ab & 0x7F7F7F7F) << 1);
          bcx ^= ((bc & 0x7F7F7F7F) << 1);
         cdx ^= ((cd & 0x7F7F7F7F) << 1);


NEW:
         uint32_t t, t2, t3;
         t = (ab & 0x80808080);
         t2 = (bc & 0x80808080);
         t3 = (cd & 0x80808080);

         uint32_t abx = (t >> 7) * 27 ^ ((ab^t) << 1);
         uint32_t bcx = (t2 >> 7) * 27 ^ ((bc^t2) << 1);
         uint32_t cdx = (t3 >> 7) * 27 ^ ((cd^t3) << 1);
2  Alternate cryptocurrencies / Altcoin Discussion / [ANN] 🔥Bitcoin LITE (BTCLT) HARD FORK🔥 Mass adoption cryptocurrency ! on: December 27, 2017, 03:34:51 AM
                                                                               Bitcoin LITE HARD FORK !!

All of us are aware how famous cryptocurrency Bitcoin changed in the past years. Mining cartels, slow
transactions, high fees,etc. Its just not the same anymore. Many people inclusive our team are ready for the
change. We are an international team of blockchain professionals, coders, programmers, designers, miners
and more. We are the voice of community and the regular users, who want fast, private and easy transactions
for an everyday use. Bitcoin Lite is a NEXT GENERATION coin based on POS, fast, private and mobile
friendly. Ready for mass adoption !

This coin will appear from a Bitcoin HARD FORK around 30th of January 2018.

Bitcoin LITE, BTCL, is a NEW WORLD cryptocurrency created for mass adoption, that began in 2018 as a fork of the
Bitcoin blockchain, but has been independent since then.
Because Bitcoin LITE began as a fork, it contains the full transaction history of the Bitcoin blockchain up until
the fork, including the exact balances of Bitcoins held in wallets at that time by users and organizations around
the world. Anyone who held a Bitcoin balance immediately before the the fork held an equivalent balance of
Bitcoin LITE (YES ! Smiley ) immediately after the fork.

Q: What does Bitcoin Lite offer ??
                                                      

                                                                      A: Top key functions:
- Instant transactions - Transactions are confirmed in seconds, easy as PayPal !
- Easy mining - No need for costly hardware and taking loan to pay electricity bill ! Staking is a new mining !
Eco friendly !
- Rewards mechanism - Yes ! Now you actually getting rewarded for helping the community maintain a healthy
network. Anyone who have enough coins can stake !
- Anonymity - BTCL is working towards private instant verified transactions as its default transactions.
- Low fees - BTCL have extremely low transaction fees which means you can finally pay for your Pizza with
crypto ! Dah !
- Big community - International community of BTCL is growing constantly !
- Mass adoption ready - BTCL meet all the requirements to become a new way of paying in everyday life.




Dear friends, we are currently developing the website and negotiating with Exchanges. Stay tuned for more info !!


Facebook: www.facebook.com/truebitcoinlite
Website: www.bitcoinlite.us
Telegram: http://Https://T.me/bitcoinlite
Twitter:  https://twitter.com/BTCL_Official
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!