|
|
|
|
|
by wat10000
371 days ago
|
|
Determinism is predicated on what you consider to be the relevant inputs. Many compilers are not deterministic when only considering the source files or even the current time. For example, any output produced by iterating over a hash table with pointer keys is likely to depend on ASLR and thus be nondetermistic unless you consider the ASLR randomization to be one of the inputs. Any output that depends on directory iteration order is likely to be consistent on a single computer but vary across computers. LLMs aren’t magic. They’re software running on inputs like anything else, which means they’re deterministic if you constrain all the inputs. |
|