"docs/vscode:/vscode.git/clone" did not exist on "6886e28fd838e9932d9334ba106e8d86714068e3"
Commit fd019e14 authored by Rostyslav Geyyer's avatar Rostyslav Geyyer
Browse files

Fix CTORs

parent cf01d718
...@@ -1031,7 +1031,7 @@ struct non_native_vector_type<T, 1> ...@@ -1031,7 +1031,7 @@ struct non_native_vector_type<T, 1>
StaticallyIndexedArray<d1_t, 1> d1x1_; StaticallyIndexedArray<d1_t, 1> d1x1_;
} data_; } data_;
__host__ __device__ constexpr non_native_vector_type() : data_{type{0}} {} __host__ __device__ constexpr non_native_vector_type() : data_{type{}} {}
__host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {} __host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {}
...@@ -1069,7 +1069,7 @@ struct non_native_vector_type<T, 2> ...@@ -1069,7 +1069,7 @@ struct non_native_vector_type<T, 2>
StaticallyIndexedArray<d2_t, 1> d2x1_; StaticallyIndexedArray<d2_t, 1> d2x1_;
} data_; } data_;
__host__ __device__ constexpr non_native_vector_type() : data_{type{0}} {} __host__ __device__ constexpr non_native_vector_type() : data_{type{}} {}
__host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {} __host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {}
...@@ -1131,7 +1131,7 @@ struct non_native_vector_type<T, 4> ...@@ -1131,7 +1131,7 @@ struct non_native_vector_type<T, 4>
StaticallyIndexedArray<d4_t, 1> d4x1_; StaticallyIndexedArray<d4_t, 1> d4x1_;
} data_; } data_;
__host__ __device__ constexpr non_native_vector_type() : data_{type{0}} {} __host__ __device__ constexpr non_native_vector_type() : data_{type{}} {}
__host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {} __host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {}
...@@ -1389,7 +1389,7 @@ struct non_native_vector_type<T, 32> ...@@ -1389,7 +1389,7 @@ struct non_native_vector_type<T, 32>
StaticallyIndexedArray<d32_t, 1> d32x1_; StaticallyIndexedArray<d32_t, 1> d32x1_;
} data_; } data_;
__host__ __device__ constexpr non_native_vector_type() : data_{type{0}} {} __host__ __device__ constexpr non_native_vector_type() : data_{type{}} {}
__host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {} __host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {}
...@@ -1497,7 +1497,7 @@ struct non_native_vector_type<T, 64> ...@@ -1497,7 +1497,7 @@ struct non_native_vector_type<T, 64>
StaticallyIndexedArray<d64_t, 1> d64x1_; StaticallyIndexedArray<d64_t, 1> d64x1_;
} data_; } data_;
__host__ __device__ constexpr non_native_vector_type() : data_{type{0}} {} __host__ __device__ constexpr non_native_vector_type() : data_{type{}} {}
__host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {} __host__ __device__ constexpr non_native_vector_type(type v) : data_{v} {}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment