Cache

You can generate a Modulation to cache the calculation results using Cache.

use autd3::prelude::*;
use autd3::modulation::Cache;

fn main() {
let _ = 
Cache::new(Static::default());
}
#include<autd3.hpp>
#include <autd3/modulation/cache.hpp>

int main() {
using namespace autd3;
modulation::Cache(Static{});
return 0; }
using AUTD3Sharp.Modulation;

new Cache(new Static());
from pyautd3 import Static
from pyautd3.modulation import Cache

Cache(Static())

NOTE: For most Modulation, it is faster to recalculate each time rather than cache. Always benchmark when using.