File: rocblas_vector.hpp

package info (click to toggle)
rocblas 6.4.4-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,082,776 kB
  • sloc: cpp: 244,923; f90: 50,012; python: 50,003; sh: 24,630; asm: 8,917; makefile: 150; ansic: 107; xml: 36; awk: 14
file content (185 lines) | stat: -rw-r--r-- 7,989 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* ************************************************************************
 * Copyright (C) 2018-2024 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell cop-
 * ies of the Software, and to permit persons to whom the Software is furnished
 * to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IM-
 * PLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNE-
 * CTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * ************************************************************************ */

#pragma once

#include "d_vector.hpp"

#include "device_batch_vector.hpp"
#include "device_multiple_strided_batch_vector.hpp"
#include "device_strided_batch_vector.hpp"
#include "device_vector.hpp"

#include "host_batch_vector.hpp"
#include "host_multiple_strided_batch_vector.hpp"
#include "host_pinned_vector.hpp"
#include "host_strided_batch_vector.hpp"
#include "host_vector.hpp"

#include "rocblas_init.hpp"

//!
//! @brief Initialize a host_strided_batch_vector.
//! @param hx The host_strided_batch_vector.
//! @param arg Specifies the argument class.
//! @param nan_init Initialize vector with Nan's depending upon the rocblas_check_nan_init enum value.
//! @param seedReset reset the seed if true, do not reset the seed otherwise. Use init_cos if seedReset is true else use init_sin.
//! @param alternating_sign Initialize vector so adjacent entries have alternating sign.
//!
template <typename T>
inline void rocblas_init_vector(host_strided_batch_vector<T>& hx,
                                const Arguments&              arg,
                                rocblas_check_nan_init        nan_init,
                                bool                          seedReset        = false,
                                bool                          alternating_sign = false)
{
    for(int64_t batch_index = 0; batch_index < hx.batch_count(); ++batch_index)
    {
        auto*   x    = hx[batch_index];
        int64_t incx = hx.inc();
        int64_t N    = hx.n();
        if(nan_init == rocblas_client_alpha_sets_nan && rocblas_isnan(arg.alpha))
        {
            rocblas_init_vector(random_nan_generator<T>, x, N, incx);
        }
        else if(nan_init == rocblas_client_beta_sets_nan && rocblas_isnan(arg.beta))
        {
            rocblas_init_vector(random_nan_generator<T>, x, N, incx);
        }
        else if(arg.initialization == rocblas_initialization::hpl)
        {
            if(alternating_sign)
                rocblas_init_vector_alternating_sign(random_hpl_generator<T>, x, N, incx);
            else
                rocblas_init_vector(random_hpl_generator<T>, x, N, incx);
        }
        else if(arg.initialization == rocblas_initialization::rand_int)
        {
            if(alternating_sign)
                rocblas_init_vector_alternating_sign(random_generator<T>, x, N, incx);
            else
                rocblas_init_vector(random_generator<T>, x, N, incx);
        }
        else if(arg.initialization == rocblas_initialization::trig_float)
        {
            rocblas_init_vector_trig(x, N, incx, seedReset);
        }
    }
}

//!
//! @brief Initialize a host_batch_vector.
//! @param hx The host_batch_vector.
//! @param arg Specifies the argument class.
//! @param nan_init Initialize vector with Nan's depending upon the rocblas_check_nan_init enum value.
//! @param seedReset reset the seed if true, do not reset the seed otherwise. Use init_cos if seedReset is true else use init_sin.
//! @param alternating_sign Initialize vector so adjacent entries have alternating sign.
//!
template <typename T>
inline void rocblas_init_vector(host_batch_vector<T>&  hx,
                                const Arguments&       arg,
                                rocblas_check_nan_init nan_init,
                                bool                   seedReset        = false,
                                bool                   alternating_sign = false)
{
    for(int64_t batch_index = 0; batch_index < hx.batch_count(); ++batch_index)
    {
        auto*   x    = hx[batch_index];
        int64_t incx = hx.inc();
        int64_t N    = hx.n();
        if(nan_init == rocblas_client_alpha_sets_nan && rocblas_isnan(arg.alpha))
        {
            rocblas_init_vector(random_nan_generator<T>, x, N, incx);
        }
        else if(nan_init == rocblas_client_beta_sets_nan && rocblas_isnan(arg.beta))
        {
            rocblas_init_vector(random_nan_generator<T>, x, N, incx);
        }
        else if(arg.initialization == rocblas_initialization::hpl)
        {
            if(alternating_sign)
                rocblas_init_vector_alternating_sign(random_hpl_generator<T>, x, N, incx);
            else
                rocblas_init_vector(random_hpl_generator<T>, x, N, incx);
        }
        else if(arg.initialization == rocblas_initialization::rand_int)
        {
            if(alternating_sign)
                rocblas_init_vector_alternating_sign(random_generator<T>, x, N, incx);
            else
                rocblas_init_vector(random_generator<T>, x, N, incx);
        }
        else if(arg.initialization == rocblas_initialization::trig_float)
        {
            rocblas_init_vector_trig(x, N, incx, seedReset);
        }
    }
}

//!
//! @brief Initialize a host_vector.
//! @param hx The host_vector.
//! @param arg Specifies the argument class.
//! @param nan_init Initialize vector with Nan's depending upon the rocblas_check_nan_init enum value.
//! @param seedReset reset the seed if true, do not reset the seed otherwise. Use init_cos if seedReset is true else use init_sin.
//! @param alternating_sign Initialize vector so adjacent entries have alternating sign.
//!
template <typename T>
inline void rocblas_init_vector(host_vector<T>&        hx,
                                const Arguments&       arg,
                                rocblas_check_nan_init nan_init,
                                bool                   seedReset        = false,
                                bool                   alternating_sign = false)
{
    if(seedReset)
        rocblas_seedrand();

    int64_t N    = hx.n();
    int64_t incx = hx.inc();

    if(nan_init == rocblas_client_alpha_sets_nan && rocblas_isnan(arg.alpha))
    {
        rocblas_init_vector(random_nan_generator<T>, (T*)hx, N, incx);
    }
    else if(nan_init == rocblas_client_beta_sets_nan && rocblas_isnan(arg.beta))
    {
        rocblas_init_vector(random_nan_generator<T>, (T*)hx, N, incx);
    }
    else if(arg.initialization == rocblas_initialization::hpl)
    {
        if(alternating_sign)
            rocblas_init_vector_alternating_sign(random_hpl_generator<T>, (T*)hx, N, incx);
        else
            rocblas_init_vector(random_hpl_generator<T>, (T*)hx, N, incx);
    }
    else if(arg.initialization == rocblas_initialization::rand_int)
    {
        if(alternating_sign)
            rocblas_init_vector_alternating_sign(random_generator<T>, (T*)hx, N, incx);
        else
            rocblas_init_vector(random_generator<T>, (T*)hx, N, incx);
    }
    else if(arg.initialization == rocblas_initialization::trig_float)
    {
        rocblas_init_vector_trig((T*)hx, N, incx, seedReset);
    }
}