aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/TensorUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/src/TensorUtils.h')
-rw-r--r--compute_kernel_writer/src/TensorUtils.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/compute_kernel_writer/src/TensorUtils.h b/compute_kernel_writer/src/TensorUtils.h
index 84eca084bb..bb0af5c0b9 100644
--- a/compute_kernel_writer/src/TensorUtils.h
+++ b/compute_kernel_writer/src/TensorUtils.h
@@ -22,8 +22,8 @@
* SOFTWARE.
*/
-#ifndef COMPUTE_KERNEL_WRITER_SRC_TENSORUTILS_H
-#define COMPUTE_KERNEL_WRITER_SRC_TENSORUTILS_H
+#ifndef CKW_SRC_TENSORUTILS_H
+#define CKW_SRC_TENSORUTILS_H
#include <cstdint>
@@ -33,7 +33,7 @@ namespace ckw
// Forward declarations
enum class TensorDataLayout;
enum class TensorDataLayoutComponent;
-enum class TensorComponent : uint32_t;
+enum class TensorComponentType : uint32_t;
/** Get tensor dimension from a given data layout and data layout component
*
@@ -42,7 +42,7 @@ enum class TensorComponent : uint32_t;
*
* @return the @ref TensorComponent
*/
-TensorComponent get_tensor_dimension(TensorDataLayout layout, TensorDataLayoutComponent component);
+TensorComponentType get_tensor_dimension(TensorDataLayout layout, TensorDataLayoutComponent component);
/** Get tensor stride from a given data layout and data layout component
*
@@ -51,6 +51,7 @@ TensorComponent get_tensor_dimension(TensorDataLayout layout, TensorDataLayoutCo
*
* @return the @ref TensorComponent
*/
-TensorComponent get_tensor_stride(TensorDataLayout layout, TensorDataLayoutComponent component);
+TensorComponentType get_tensor_stride(TensorDataLayout layout, TensorDataLayoutComponent component);
} // namespace ckw
-#endif /* COMPUTE_KERNEL_WRITER_SRC_TENSORUTILS_H */
+
+#endif // CKW_SRC_TENSORUTILS_H