@@ -158,7 +158,7 @@ class run_cache_manager {
158
158
*
159
159
* @param[in] s ORC decoder state.
160
160
*/
161
- __forceinline__ __device__ void initialize (orcdec_state_s* s)
161
+ __device__ void initialize (orcdec_state_s* s)
162
162
{
163
163
_status = (s->top .data .index .run_pos [CI_DATA2] > 0 and s->chunk .type_kind == TIMESTAMP)
164
164
? status::CAN_WRITE_TO_CACHE
@@ -175,7 +175,7 @@ class run_cache_manager {
175
175
* @param[in] max_length The maximum length allowed to be consumed. This limit is imposed
176
176
* by the decoder when processing the SECONDARY stream.
177
177
*/
178
- __forceinline__ __device__ void set_reusable_length (uint32_t run_length, uint32_t max_length)
178
+ __device__ void set_reusable_length (uint32_t run_length, uint32_t max_length)
179
179
{
180
180
if (_status == status::CAN_WRITE_TO_CACHE) {
181
181
_run_length = run_length;
@@ -190,7 +190,7 @@ class run_cache_manager {
190
190
* @param[in] max_length The maximum length allowed to be consumed.
191
191
* @return A new maximum length.
192
192
*/
193
- __forceinline__ __device__ uint32_t adjust_max_length (uint32_t max_length)
193
+ __device__ uint32_t adjust_max_length (uint32_t max_length)
194
194
{
195
195
auto new_max_length{max_length};
196
196
if (_status == status::CAN_READ_FROM_CACHE and _reusable_length > 0 ) {
@@ -205,7 +205,7 @@ class run_cache_manager {
205
205
* @param[in] src Intermediate buffer for the DATA stream.
206
206
* @param[out] cache Local variable serving as the cache.
207
207
*/
208
- __forceinline__ __device__ void write_to_cache (int64_t * src, int64_t & cache)
208
+ __device__ void write_to_cache (int64_t * src, int64_t & cache)
209
209
{
210
210
if (_status != status::CAN_WRITE_TO_CACHE) { return ; }
211
211
@@ -237,9 +237,7 @@ class run_cache_manager {
237
237
* @param[in,out] rle Run length decoder state object.
238
238
* @param[in] cache Local variable serving as the cache.
239
239
*/
240
- __forceinline__ __device__ void read_from_cache (int64_t * dst,
241
- orc_rlev2_state_s* rle,
242
- int64_t cache)
240
+ __device__ void read_from_cache (int64_t * dst, orc_rlev2_state_s* rle, int64_t cache)
243
241
{
244
242
if (_status != status::CAN_READ_FROM_CACHE) { return ; }
245
243
0 commit comments