Jason Ansel

Results 199 comments of Jason Ansel

Full checkpointing is a bit hard because each search technique has different state. I'd recommend either using this flag: ``` --seed-configuration FILENAME Start search at a given configuration. Can be...

UniformGreedyMutation doesn't have any state, so just setting seed_configuration should be the same as checkpointing it. UniformGreedyMutation just takes the current best config, randomly mutates it, and repeats. It is...

cc @shoaibkamil who implemented that

By online do you mean the optimal configuration changes over time? If so, no it does not support that.

@shunting314 could you help test this one in fbcode before we land it?

There is nothing special about as_strided. In that case inductor decided to generate a 1D kernel (since both dimensions had the same contiguity), but required a 2D load. Similarly, if...

> Would option 2 break the requirement that tiling dims == block pointer dims? Yes, that is what I meant by "This would be a bit more flexible."

I think there are some correctness issues with that, because the iteration order must match exactly between all loads/stores in the kernel. The guards I was talking about would need...

This is inference? Or training?

I don't think the final version this will look very much like `PythonKernelHolder`, nor do I think it belongs as part of that class. For performance, we should bypass most...