• @[email protected]
    link
    fedilink
    12 years ago

    You could imagine training one AI for each game AI problem like pathfinding but what is see the benefit over just using classical algorithms?

    Can DLSS and XeSS be used for something else than upscaling?

    • @[email protected]
      link
      fedilink
      22 years ago

      what is the benefit over just using classical algorithms

      Utilisation. A CPU isn’t really built for deep AI code, so it can’t really do realistic AI given the frame budget of doing other things. This is famously why games have bad AI. Training AI via AI algorithms could make the NPCs more realistic or smarter, and you could do this within reasonable frame budgets.

      • @[email protected]
        link
        fedilink
        22 years ago

        I see. You want to offload AI-specific computations to the Nvidia AI cores. Not a bad idea, although it does mean that hardware that do not have them will have more CPU load so perhaps the AI will have to be tuned down based on the hardware they run on…

        • @[email protected]
          link
          fedilink
          22 years ago

          so perhaps the AI will have to be tuned down based on the hardware they run on…

          Yes, similar to Raytracing which still needs a traditional pipeline, with AI you will have “enhanced” (Neural Nets) and “basic” (if statements).