Remix.run Logo
newsoftheday 3 hours ago

> Eventually, we'll end up in a world where humans don't need to touch code, but we are not there yet.

Will we though? Wouldn't AI need to reach a stage where it is a tool, like a compiler, which is 100% deterministic?

intrasight 3 hours ago | parent | next [-]

We will and soon because it does not have to be deterministic like a compiler. It only has to pass all tests.

my_throwaway23 an hour ago | parent [-]

Who is writing the tests?

vbezhenar 2 hours ago | parent | prev [-]

Compiler is not 100% deterministic. Its output can change when you upgrade its version, its output can change when you change optimization options. Using profile-guided optimization can also change between runs.

CWIZO 29 minutes ago | parent [-]

If you change inputs then obviously you will get a different output. Crucially using the same inputs, however, produces the same output. So compilers are actually deterministic.