sinkinben
sinkinben
Close #6272 (which is sub-issue of https://github.com/NVIDIA/spark-rapids/issues/6149 ). Implemented casting bool/int8/int16/int32/int64 -> {string, float, double(float64), timestamp}. When casting `Long -> timestamp`, we need overflow checking. And if there is long-overflow,...
Close #6291, (which is sub-issue of https://github.com/NVIDIA/spark-rapids/issues/6149 ). To implement casting `float/double` to `{bool, integer types, double/float, string, timestamp}`. `double` is also known as `float64`. Integer types include `int8/16/32/64`. ###...
A sub-issue of https://github.com/NVIDIA/spark-rapids/issues/6149 . While reading ORC files, implement casting `float/double` to `{bool, integer types, double/float, string, timestamp}`. `double` is also known as `float64`. Integer types include `int8/16/32/64`.
A sub-issue of #6149 . Implement casting bool/int8/int16/int32/int64 -> {string, float, double(float64), timestamp}, totally 20 cases.
A sub-issue of #6149 . While reading ORC files, implement casting `date` to `{timestamp, string}`. Type `date` in scala-spark is actually `javq.sql.Date`, see https://spark.apache.org/docs/latest/sql-ref-datatypes.html. In python-spark, it's actually `datetime.date`.
A sub-issue of https://github.com/NVIDIA/spark-rapids/issues/6149 . While reading ORC files, implement casting `string` to `{bool, int8/16/32/64, float32, double, timestamp, date}`.
If I want to do something when the timer is zero, what should I do? Thanks.
I have noticed that: ```cpp struct adpcm_context { struct adpcm_channel channels [2]; int num_channels, lookahead, noise_shaping; }; ``` and piece of code in `adpcm_converter`: ```cpp if (WaveHeader.NumChannels < 1 ||...