CUTLASS
CUDA Templates for Linear Algebra Subroutines and Solvers
gemv.h
Go to the documentation of this file.
1 /***************************************************************************************************
2  * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification, are permitted
5  * provided that the following conditions are met:
6  * * Redistributions of source code must retain the above copyright notice, this list of
7  * conditions and the following disclaimer.
8  * * Redistributions in binary form must reproduce the above copyright notice, this list of
9  * conditions and the following disclaimer in the documentation and/or other materials
10  * provided with the distribution.
11  * * Neither the name of the NVIDIA CORPORATION nor the names of its contributors may be used
12  * to endorse or promote products derived from this software without specific prior written
13  * permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
19  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21  * STRICT LIABILITY, OR TOR (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  **************************************************************************************************/
29 #pragma once
30 
31 #include "cutlass/cutlass.h"
32 #include "cutlass/array.h"
33 #include "cutlass/numeric_types.h"
34 #include "cutlass/matrix_shape.h"
35 
36 #include "cutlass/gemm/gemm.h"
37 
39 
40 namespace cutlass {
41 namespace gemm {
42 namespace threadblock {
43 
45 
47 template <
48  class Core_ //< GemvCore
49 >
50 class Gemv {
51 public:
52  using Shape = typename Core_::Shape;
53 
55  using Operator = typename Core_::Operator;
56 
58  using IteratorA = typename Core_::IteratorA;
59 
61  using IteratorB = typename Core_::IteratorB;
62 
64  using IteratorC = typename Core_::IteratorC;
65 
67  using FragmentA = typename IteratorA::Fragment;
68 
70  using FragmentB = typename IteratorB::Fragment;
71 
73  using FragmentC = typename Operator::FragmentC;
74 
76  using ThreadShape = typename Core_::ThreadShape;
77 
78 public:
79  CUTLASS_DEVICE
80  Gemv() { }
81 
82  CUTLASS_DEVICE
83  void operator()(
84  GemmCoord const &problem_size,
85  FragmentC &accum,
86  IteratorA iterator_A,
87  IteratorB iterator_B,
88  FragmentC const &src_accum) {
89 
90  //
91  // Prologue
92  //
93 
94  FragmentA frag_A;
95  FragmentB frag_B;
96  frag_A.clear();
97  frag_B.clear();
98 
99  iterator_A.load(frag_A);
100  iterator_B.load(frag_B);
101  ++iterator_A;
102  ++iterator_B;
103 
104  //
105  // Mainloop
106  //
107  Operator thread_mma;
108  int gemm_k = problem_size.k();
109 
110  if (gemm_k < Shape::kK)
111  {
112  iterator_A.clear_mask();
113  iterator_B.clear_mask();
114  }
115 
116  // iterate over K to accumulate result
118  for (; gemm_k > 0; gemm_k -= Shape::kK) {
119  thread_mma(accum, frag_A, frag_B, accum);
120 
121  iterator_A.load(frag_A);
122  iterator_B.load(frag_B);
123  ++iterator_A;
124  ++iterator_B;
125 
126  if (gemm_k < Shape::kK)
127  {
128  iterator_A.clear_mask();
129  iterator_B.clear_mask();
130  }
131  }
132 
133  }
134 };
135 
137 
138 } // namespace threadblock
139 } // namespace gemm
140 } // namespace cutlass
Definition: aligned_buffer.h:35
CUTLASS_DEVICE Gemv()
Definition: gemv.h:80
typename IteratorB::Fragment FragmentB
Fragment of operand B loaded from global memory.
Definition: gemv.h:70
Definition: include/cutlass/gemm/gemm.h:94
Defines common types used for all GEMM-like operators.
typename Core_::Operator Operator
The MMA operator that computes GEMV.
Definition: gemv.h:55
CUTLASS_HOST_DEVICE Index const & k() const
Returns the GEMM K coordinate.
Definition: include/cutlass/gemm/gemm.h:145
Statically sized array of elements that accommodates all CUTLASS-supported numeric types and is safe ...
Structure to compute the matrix-vector product using SIMT math instructions.
Definition: gemv.h:50
Defines a Shape template for matrix tiles.
Top-level include for all CUTLASS numeric types.
typename Core_::ThreadShape ThreadShape
Shape of the per-thread GEMV operation.
Definition: gemv.h:76
typename Core_::IteratorA IteratorA
Iterates over A in global memory.
Definition: gemv.h:58
typename Operator::FragmentC FragmentC
Fragment of operand accumulator loaded/stored to global memory.
Definition: gemv.h:73
typename Core_::IteratorB IteratorB
Iterates over B in global memory.
Definition: gemv.h:61
#define CUTLASS_GEMM_LOOP
Definition: cutlass.h:112
typename IteratorA::Fragment FragmentA
Fragment of operand A loaded from global memory.
Definition: gemv.h:67
CUTLASS_DEVICE void operator()(GemmCoord const &problem_size, FragmentC &accum, IteratorA iterator_A, IteratorB iterator_B, FragmentC const &src_accum)
Definition: gemv.h:83
Basic include for CUTLASS.
typename Core_::Shape Shape
Definition: gemv.h:52
typename Core_::IteratorC IteratorC
Fragment of operand C loaded from global memory.
Definition: gemv.h:64