Gregory Axler

Results 21 comments of Gregory Axler

As for the multi-type, Perhaps we can use something like Apache Arraow's [arrays](https://docs.rs/arrow/3.0.0/arrow/array/index.html) to construct a multi-type dataframe (https://docs.rs/arrow/3.0.0/arrow/record_batch/struct.RecordBatch.html). We can have a general trait something like `BaseDataFrame` and put...

@VolodymyrOrlov I agree on Arrow being optional, I meant to use Arrow as some form of reference for multi-datatpye structures. `BaseDataFrame` trait will be the general API. As for mutability,...

As of now we limit categorical encoding to round RealNumbers, so for now OrdinalEncoder will be an identity function. I'll adjust the SeriesOneHotEncoder so it will be able to make...

We are waiting on a rewrite to be done See: https://github.com/openai/triton/pull/490#issuecomment-1238752684

> We have a prototype that works with an old version of Triton. You might be able to hack it for your needs? https://github.com/openai/triton/pull/490

> And what will AoT compilation generate, a C/C++ API plus source/.so? For previous iterations we started with a C code that holds the kernels in source. The thinking is...

> @gaxler should there be a correlation between the triton `BLOCK_SIZE` defined in the kernel definition, and the `gX`, `gY`, `gZ` defined in `GridWarps` when calling the kernel? You mean...

sorry that you have to bump into all those things. this is just a POC and in no way optimized. thanks for profiling the generated code!! probably the worst thing...

Assuming the `_tr...` is a triton JITFunction for JIT and the launch function from the generated C code for AOT. I think you are correct. The `JITFunction` does the module...

Got a new prototype together, maybe this can help in some way: https://github.com/openai/triton/pull/1056