Author

Topic: [ANN][XEL] Elastic Project - The Decentralized Supercomputer - page 144. (Read 450523 times)

sr. member
Activity: 243
Merit: 250
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
hero member
Activity: 784
Merit: 500
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!
full member
Activity: 193
Merit: 100
Hi will you have pow here ,when yes what algo and when launch ?
full member
Activity: 206
Merit: 106
Old Account was Sev0 (it was hacked)
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.
hero member
Activity: 558
Merit: 500
Make a countdown timer to launch the Elastic network.
sr. member
Activity: 448
Merit: 250
Ben2016
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
legendary
Activity: 1260
Merit: 1168
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.

hero member
Activity: 784
Merit: 500
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/
legendary
Activity: 1274
Merit: 1050
How 'bout that new roadmap ?


Enjoy the trip. Think of me when you sip that coctail
legendary
Activity: 1260
Merit: 1168
One more roadmap question and I go on a 2 month vacation to the carribean islands.
sr. member
Activity: 243
Merit: 250
is anybody still working on the new website?

@unvoid  Grin
hero member
Activity: 742
Merit: 501
any roadmap update? Ek?
sr. member
Activity: 464
Merit: 260
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.
hero member
Activity: 784
Merit: 500
is anybody still working on the new website?
sr. member
Activity: 464
Merit: 260
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...
hero member
Activity: 661
Merit: 500
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.
legendary
Activity: 1148
Merit: 1000
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
sr. member
Activity: 464
Merit: 260
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.
hero member
Activity: 661
Merit: 500
There's already a price speculation thread.

https://bitcointalk.org/index.php?topic=1589333.0;topicseen

Oh.. i see now. Lol on page 4 someone tried to start a collection of OTC offers. Seems really cluttered and difficult to locate(e.g. OTC posts in ANN thread today)... w/e if people want to use that then its fine. Im only trying to clean up this thread!
full member
Activity: 190
Merit: 100
Sell 20000 XEL on 30000 WAVES.
PM


Please utilize this thread for any OTC offers going forward folks. Lets keep this thread as clean as possible for project related updates.

No worries Dimid, I just created it  Cheesy

EDIT: Newly created self-moderated otc thread 

https://bitcointalksearch.org/topic/otc-buy-and-sell-elastic-coin-thread-xel-always-use-escrow-1804795




There's already a price speculation thread.

https://bitcointalk.org/index.php?topic=1589333.0;topicseen
Jump to: