OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RasterInfo.h
Go to the documentation of this file.
1 /*
2  * Copyright 2023 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #ifndef __CUDACC__
20 
21 #include <cstdint>
22 
23 namespace RasterFormat_Namespace {
24 
25 struct RasterInfo {
26  const int64_t raster_channels;
27  const int64_t x_pixels_per_tile;
28  const int64_t y_pixels_per_tile;
33  const int64_t x_tiles;
34  const int64_t y_tiles;
35  const int64_t batch_tiles;
38  const double min_x_input;
39  const double min_y_input;
40 };
41 
42 } // namespace RasterFormat_Namespace
43 
44 #endif // #ifdef __CUDACC__
const int64_t logical_y_pixels_per_tile
Definition: RasterInfo.h:32
const int64_t logical_x_pixels_per_tile
Definition: RasterInfo.h:31
const int64_t halo_y_pixels_per_tile_boundary
Definition: RasterInfo.h:30
const int64_t halo_x_pixels_per_tile_boundary
Definition: RasterInfo.h:29