Bitcoin Forum
May 05, 2024, 03:07:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 [202] 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 ... 345 »
  Print  
Author Topic: [ANN][XEL] Elastic Project - The Decentralized Supercomputer  (Read 450432 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
coralreefer
Sr. Member
****
Offline Offline

Activity: 464
Merit: 260


View Profile
February 25, 2017, 07:59:53 PM
 #4021

We appreciate your efforts Selsonblue.  Honestly, I'm guessing Lannister is never coming back so eventually we should probably move to a new thread where someone can make updates to the main post...or just go to slack completely.
"There should not be any signed int. If you've found a signed int somewhere, please tell me (within the next 25 years please) and I'll change it to unsigned int." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
twistelaar
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
February 25, 2017, 08:22:05 PM
 #4022

We appreciate your efforts Selsonblue.  Honestly, I'm guessing Lannister is never coming back so eventually we should probably move to a new thread where someone can make updates to the main post...or just go to slack completely.

I think its good to use both  Smiley
Selsonblue
Hero Member
*****
Offline Offline

Activity: 661
Merit: 500


View Profile
February 25, 2017, 09:14:10 PM
 #4023

Yeah might get some extra exposure in the Marketplace at the least.  Wink

Minor slack update. The elastic slack now has a trello channel which will get auto-updates from the newly created trello board to track the development backlog.  Just to reiterate, this is in preparation for managing feedback once the main-net is released.

In my opinion, this is a must have for crypto projects that want to remain transparent, and empower the community to stay involved.

Anyone can view the trello board here: https://trello.com/b/fPdyn5Vp

Dev's and other team members feel free to PM me for a member add on the trello board if you want to utilize it sooner.
coralreefer
Sr. Member
****
Offline Offline

Activity: 464
Merit: 260


View Profile
February 25, 2017, 09:34:39 PM
 #4024

Yeah might get some extra exposure in the Marketplace at the least.  Wink

Minor slack update. The elastic slack now has a trello channel which will get auto-updates from the newly created trello board to track the development backlog.  Just to reiterate, this is in preparation for managing feedback once the main-net is released.

In my opinion, this is a must have for crypto projects that want to remain transparent, and empower the community to stay involved.

Anyone can view the trello board here: https://trello.com/b/fPdyn5Vp

Dev's and other team members feel free to PM me for a member add on the trello board if you want to utilize it sooner.

Nice work Selsonblue...I've added a couple of items where I know the miner needs enhancements.  Maybe this will encourage others to get involved.  Of course there are lots of other needed improvements to the miner...
HomoHenning
Hero Member
*****
Offline Offline

Activity: 784
Merit: 500



View Profile
February 25, 2017, 11:08:50 PM
 #4025

is anybody still working on the new website?
coralreefer
Sr. Member
****
Offline Offline

Activity: 464
Merit: 260


View Profile
February 26, 2017, 12:04:23 AM
 #4026

Yeah might get some extra exposure in the Marketplace at the least.  Wink

Minor slack update. The elastic slack now has a trello channel which will get auto-updates from the newly created trello board to track the development backlog.  Just to reiterate, this is in preparation for managing feedback once the main-net is released.

In my opinion, this is a must have for crypto projects that want to remain transparent, and empower the community to stay involved.

Anyone can view the trello board here: https://trello.com/b/fPdyn5Vp

Dev's and other team members feel free to PM me for a member add on the trello board if you want to utilize it sooner.

Nice work Selsonblue...I've added a couple of items where I know the miner needs enhancements.  Maybe this will encourage others to get involved.  Of course there are lots of other needed improvements to the miner...

Here is a more comprehensive list of the enhancements that I know the miner needs.  As I've stated all along, this is just a prototype miner, I'm sure others can improve on it greatly.

Also, I'm not asking for people to tell me how to solve for these issues...I already know how to fix each of them, I'm just not interested at this time.  I'm just hoping this may help others get more involved and help out.

1) OpenCL Enhancement 1 - I don't own any GPU's so my OpenCL logic is very basic.  Right now it uses a very simplistic approach to determine the number of cores to mine with.  This needs to be enhanced, but I don't have the hardware to try out the code with.

2) OpenCL Enhancement 2 - ElasticPL uses 64bit floating point arithmetic...but not all devices support 64bit floats.  Right now, the if the miner doesn't support 64 bit floats, it won't use OpenCL.  Ultimately, it would be better if the miner checks to if the job even requires floats, and if not, it should be able to use OpenCL...or better yet...some floating point operations don't require 64 bits...check if it uses those.

3) OpenCL Enhancement 3 - Create AMD / NVIDIA specific code to optimize the miner for those GPUs....but remember, no one knows what you'll be mining...it's all up to what logic the author submits in the job...so it needs to be very flexible.

4) Mining Algo Switching - The algo to determine which job to mine is pretty simplistic.  You can choose the most profitable job, the easiest job, etc.  First it would be great if the community came up with a list of the various ways the miner could determine which job to mine, then the mining logic could be updated accordingly.

5) C / OpenCL Code Generator - Currently this code generator uses recursive logic.  This puts a limit on how deep the AST tree can be based on the hardware...but, I have a check in place to make sure the miner doesn't exceed it's limits.  We may want to switch the code generators to use an iterative approach instead (see the WCET logic for an example).  I created a prototype of it but it is ugly and hard to maintain.  Maybe someone can come up with something better.

6) WCET Calculations - I modified the calculation to better represent the complexity of the code, but it really needs some additional work.  Someone could spend some time truly figuring out the relative weights of the various operators / functions to better determine how complex the job is.

7) CPU Thread Priority - When I built the miner I removed all thread prioritization logic (remember I never intended this miner to ever be used).  EK added some simple logic back for Linux users, but there is nothing for Windows users...someone could add all this back in.

8 ) Miner Options - I'm sure there are more options that would make the user more user friendly...

This is all I can think of for now.
beyinsi
Hero Member
*****
Offline Offline

Activity: 742
Merit: 501


View Profile
February 26, 2017, 12:24:08 AM
 #4027

any roadmap update? Ek?
wwdz99
Sr. Member
****
Offline Offline

Activity: 243
Merit: 250



View Profile
February 26, 2017, 06:29:36 AM
 #4028

is anybody still working on the new website?

@unvoid  Grin
Evil-Knievel
Legendary
*
Offline Offline

Activity: 1260
Merit: 1168



View Profile
February 26, 2017, 10:51:11 AM
 #4029

One more roadmap question and I go on a 2 month vacation to the carribean islands.
Joerii
Legendary
*
Offline Offline

Activity: 1274
Merit: 1050



View Profile WWW
February 26, 2017, 10:53:57 AM
 #4030

How 'bout that new roadmap ?


Enjoy the trip. Think of me when you sip that coctail

Hypercube - get the attention you deserve
HomoHenning
Hero Member
*****
Offline Offline

Activity: 784
Merit: 500



View Profile
February 26, 2017, 10:59:09 AM
 #4031

is anybody still working on the new website?

@unvoid  Grin


I mean this one. looked very promising Wink

Hello Guys,

I am starting to build elastic website. Everyone can help elastic website! We can build elastic website on this template, we need contents,graphics
and ideas... Lets work on it together..

This is github repo: https://github.com/Bilader/xelsite

Preview: https://bilader.github.io/xelsite/
Evil-Knievel
Legendary
*
Offline Offline

Activity: 1260
Merit: 1168



View Profile
February 26, 2017, 11:00:50 AM
 #4032

How 'bout that new roadmap ?


Enjoy the trip. Think of me when you sip that coctail

 Grin That's was a good one. Seriously, once I am done here I will move to the dominican republic ... but first things come first.

Bgjjj2016
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250

Ben2016


View Profile
February 26, 2017, 11:06:10 AM
 #4033

How 'bout that new roadmap ?


Enjoy the trip. Think of me when you sip that coctail

 Grin That's was a good one. Seriously, once I am done here I will move to the dominican republic ... but first things come first.


You well deserve a good vacation . Now, like my kids screaming in the back of the car " Are we there yet ?!" Grin

My " I want that Old Toyota Camry very bad" BTC Fund :1DQU4oqmZRcKSzg7MjPLMuHrMwnbDdjQRM
Join the Elastic revolution! Elastic Network: The Decentralized Supercomputer 
ELASTIC WEBSITE|ANNOUNCEMENT THREAD|JOIN THE SLACK
ujang1
Hero Member
*****
Offline Offline

Activity: 558
Merit: 500



View Profile
February 26, 2017, 11:36:15 AM
 #4034

Make a countdown timer to launch the Elastic network.

.SPECTRE.                ▄▄███▄▄
            ▄▄███▀▀▀▀▀███▄▄
▄▄      ▄▄███▀▀ ▄▄███▄▄ ▀▀███▄▄      ▄▄
████▄▄  ▀▀▀ ▄▄███████████▄▄ ▀▀▀  ▄▄████
  ▀▀████▄    ▀▀█████████▀▀    ▄████▀▀
 ██▄▄ ▀██ █▄▄    ▀▀▀▀▀    ▄▄█ ██▀ ▄▄██
 ▀▀███ ██ █████▄       ▄█████ ██ ███▀▀
      ██ ███████▄   ▄███████ ██
       ██ ████████   ████████ ██
       ██▄▄ ▀▀████   ████▀▀ ▄▄██
        ▀▀███▄▄ ▀▀   ▀▀ ▄▄███▀▀
            ▀▀███▄▄▄▄▄███▀▀
                ▀▀███▀▀
             │
     │      ███
     │      ███
    │     ███
███  │     ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███     │
███ ███     │
    │
 
▬▬     WHITEPAPER    ▬▬
FACEBOOK     TELEGRAM
TWITTER     SLACK     MEDIUM
.
PRE-SALE.
PUBLIC SALE.
MiningSev0
Full Member
***
Offline Offline

Activity: 206
Merit: 106

Old Account was Sev0 (it was hacked)


View Profile
February 26, 2017, 01:19:00 PM
 #4035

Please
Make a countdown timer to launch the Elastic network.
This would be very nice.
Thank you!


-------------------------
I was so free to correct your posting.
And i also got an answer:

No one here would and could create a Countdown, because the launch will happen (if someome in the community, Maybe you?) starts the network once ek or someone else finishes the code.
It was just approximate timeframe to say it wouldbe this Weekend.

New signature to come =D
Fobos2017
Full Member
***
Offline Offline

Activity: 193
Merit: 100


View Profile
February 26, 2017, 02:58:37 PM
 #4036

Hi will you have pow here ,when yes what algo and when launch ?
HomoHenning
Hero Member
*****
Offline Offline

Activity: 784
Merit: 500



View Profile
February 26, 2017, 03:15:56 PM
 #4037

How 'bout that new roadmap ?


Enjoy the trip. Think of me when you sip that coctail

 Grin That's was a good one. Seriously, once I am done here I will move to the dominican republic ... but first things come first.


You well deserve a good vacation . Now, like my kids screaming in the back of the car " Are we there yet ?!" Grin
dont take the stupid questions personal. it is a good sign that every day new people get in touch with elastic!
wwdz99
Sr. Member
****
Offline Offline

Activity: 243
Merit: 250



View Profile
February 26, 2017, 03:17:00 PM
 #4038

Hi will you have pow here ,when yes what algo and when launch ?


Here is the XEL POW miner final product link.Just take easy.

https://github.com/OrdinaryDude/elastic-miner
Fobos2017
Full Member
***
Offline Offline

Activity: 193
Merit: 100


View Profile
February 26, 2017, 03:30:43 PM
 #4039

Hi will you have pow here ,when yes what algo and when launch ?


Here is the XEL POW miner final product link.Just take easy.

https://github.com/OrdinaryDude/elastic-miner

Ok so pow is now active ,any pools when exchange ?
cryptodv
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 507


btcstakes.com


View Profile WWW
February 26, 2017, 03:31:52 PM
 #4040

How 'bout that new roadmap ?


Enjoy the trip. Think of me when you sip that coctail

 Grin That's was a good one. Seriously, once I am done here I will move to the dominican republic ... but first things come first.



Nice EK, my parents are from the Dominican Republic. I go there often. Let me know if you go, we'll have a hell of a time.  Grin



▄▄                                  ▄▄
 ███▄                            ▄███
  ██████                      ██████
   ███████                  ███████
    ███████                ███████
     ███████              ███████
      ███████            ███████
       ███████▄▄      ▄▄███████
        ██████████████████████
         ████████████████████
          ██████████████████
           ████████████████
            ██████████████
             ███████████
              █████████
               ███████
                █████
                 ██
                  █
veil|     PRIVACY     
     WITHOUT COMPROMISE.       
▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂
|   NO ICO. NO PREMINE. 
   X16RT GPU Mining. Fair distribution.   
|      The first Zerocoin-based Cryptocurrency       
   WITH ALWAYS-ON PRIVACY.   
|



                   ▄▄████
              ▄▄████████▌
         ▄▄█████████▀███
    ▄▄██████████▀▀ ▄███▌
▄████████████▀▀  ▄█████
▀▀▀███████▀   ▄███████▌
      ██    ▄█████████
       █  ▄██████████▌
       █  ███████████
       █ ██▀ ▀██████▌
       ██▀     ▀████
                 ▀█▌




   ▄███████
   ████████
   ███▀
   ███
██████████
██████████
   ███
   ███
   ███
   ███
   ███
   ███




     ▄▄█▀▀ ▄▄▄▄▄▄▄▄ ▀▀█▄▄
   ▐██▄▄██████████████▄▄██▌
   ████████████████████████
  ▐████████████████████████▌
  ███████▀▀▀██████▀▀▀███████
 ▐██████     ████     ██████▌
 ███████     ████     ███████
▐████████▄▄▄██████▄▄▄████████▌
▐████████████████████████████▌
 █████▄▄▀▀▀▀██████▀▀▀▀▄▄█████
  ▀▀██████          ██████▀▀
      ▀▀▀            ▀▀▀
Pages: « 1 ... 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 [202] 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 ... 345 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!