Home
last modified time | relevance | path

Searched refs:columns (Results 1 – 25 of 89) sorted by relevance

1234

/llvm-project-15.0.7/clang/docs/
H A DMatrixTypes.rst24 number of *rows*, and a constant number of *columns*. Matrix types with the same
25 element type, rows, and columns are the same type. A value of a matrix type
26 includes storage for ``rows * columns`` values of the *element type*. The
29 The maximum of the product of the number of rows and columns is
56 same element type, number of rows, and number of columns.
75 If the number of rows or columns differ between the original and resulting
142 columns and row is the number of rows in the matrix type:
157 the number of rows of ``M1`` and the number of columns of ``M2``.
212 the same number of columns as ``M1`` has rows.
215 number of columns of ``M``, and ``row`` to the number of rows of ``M``.
[all …]
/llvm-project-15.0.7/clang/docs/tools/
H A Ddump_format_help.py20 def indent(text, columns, indent_first_line=True): argument
21 indent_str = ' ' * columns
49 def validate(text, columns): argument
51 if len(line) > columns:
/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp451 SmallVector<StringRef, 2> columns; in GetCPUInfoForLiveProcess() local
452 line.split(columns, StringRef(":"), -1, false); in GetCPUInfoForLiveProcess()
454 if (columns.size() < 2) in GetCPUInfoForLiveProcess()
457 columns[1] = columns[1].trim(" "); in GetCPUInfoForLiveProcess()
458 if (columns[0].contains("cpu family") && in GetCPUInfoForLiveProcess()
459 columns[1].getAsInteger(10, cpu_family)) in GetCPUInfoForLiveProcess()
462 else if (columns[0].contains("model") && columns[1].getAsInteger(10, model)) in GetCPUInfoForLiveProcess()
465 else if (columns[0].contains("stepping") && in GetCPUInfoForLiveProcess()
466 columns[1].getAsInteger(10, stepping)) in GetCPUInfoForLiveProcess()
469 else if (columns[0].contains("vendor_id")) { in GetCPUInfoForLiveProcess()
[all …]
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/
H A Dtest-flat-transpose-col.mlir60 %d = vector.flat_transpose %a { rows = 2: i32, columns = 2: i32 } : vector<4xf64> -> vector<4xf64>
61 %e = vector.flat_transpose %b { rows = 2: i32, columns = 2: i32 } : vector<4xf64> -> vector<4xf64>
62 %f = vector.flat_transpose %c { rows = 2: i32, columns = 3: i32 } : vector<6xf64> -> vector<6xf64>
63 %g = vector.flat_transpose %c { rows = 3: i32, columns = 2: i32 } : vector<6xf64> -> vector<6xf64>
H A Dtest-flat-transpose-row.mlir60 %d = vector.flat_transpose %a { rows = 2: i32, columns = 2: i32 } : vector<4xf64> -> vector<4xf64>
61 %e = vector.flat_transpose %b { rows = 2: i32, columns = 2: i32 } : vector<4xf64> -> vector<4xf64>
62 %f = vector.flat_transpose %c { rows = 2: i32, columns = 3: i32 } : vector<6xf64> -> vector<6xf64>
63 %g = vector.flat_transpose %c { rows = 3: i32, columns = 2: i32 } : vector<6xf64> -> vector<6xf64>
/llvm-project-15.0.7/llvm/test/CodeGen/Thumb2/
H A D2009-09-01-PostRAProlog.ll18 @columns = internal global [128 x i32] zeroinitializer ; <[128 x i32]*> [#uses=18]
40 …%0 = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 1), ali…
42 …%2 = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 2), ali…
45 …%5 = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 3), ali…
47 …%7 = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 7), ali…
49 …%9 = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 6), ali…
52 …%12 = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 5), al…
58 …%.pn3.i = load i32, i32* getelementptr inbounds ([128 x i32], [128 x i32]* @columns, i32 0, i32 4)…
/llvm-project-15.0.7/clang/lib/Frontend/
H A DTextDiagnostic.cpp208 int columns = 0; in byteToColumn() local
211 out[i] = columns; in byteToColumn()
214 columns += llvm::sys::locale::columnWidth(res.first); in byteToColumn()
216 out.back() = columns; in byteToColumn()
240 int columns = 0; in columnToByte() local
243 out.resize(columns+1, -1); in columnToByte()
247 columns += llvm::sys::locale::columnWidth(res.first); in columnToByte()
249 out.resize(columns+1, -1); in columnToByte()
268 int columns() const { return m_byteToColumn.back(); } in columns() function
378 while (static_cast<int>(CaretEnd) < map.columns() && in selectInterestingSourceRegion()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVMatrixOps.td30 Component Type in Result Type. Its number of columns must equal the
31 number of columns in Result Type. Its columns must have the same number
32 of components as the number of columns in LeftMatrix.
141 Matrix must be an object of type OpTypeMatrix. The number of columns and
H A DSPIRVCooperativeMatrixOps.td78 component of consecutive rows (or columns) in the result. It must be a
151 Result Type must be a cooperative matrix type with M rows and N columns.
153 A is a cooperative matrix with M rows and K columns.
155 B is a cooperative matrix with K rows and N columns.
157 C is a cooperative matrix with M rows and N columns.
228 component of consecutive rows (or columns) in the result. It must be a
/llvm-project-15.0.7/mlir/test/Dialect/SPIRV/IR/
H A Dmatrix-ops.mlir57 // expected-error @+1 {{input and result matrices' columns must have the same component type}}
64 // expected-error @+1 {{input and result matrices must have the same number of columns}}
71 // expected-error @+1 {{input matrix rows count must be equal to output matrix columns count}}
79 // expected-error @+1 {{input matrix rows count must be equal to output matrix columns count}}
95 // expected-error @+1 {{right and result matrices must have equal columns' count}}
109 … // expected-error @+1 {{left matrix columns' count must be equal to the right matrix rows' count}}
H A Dtypes.mlir452 // expected-error @+1 {{expected rows and columns size}}
475 // expected-error @+1 {{matrix is expected to have 2, 3, or 4 columns}}
480 // expected-error @+1 {{matrix is expected to have 2, 3, or 4 columns}}
485 // expected-error @+1 {{matrix columns size has to be less than or equal to 4 and greater than or e…
490 // expected-error @+1 {{matrix columns size has to be less than or equal to 4 and greater than or e…
525 // expected-error @+1 {{matrix columns' elements must be of Float type, got 'i32'}}
530 // expected-error @+1 {{expected single unsigned integer for number of columns}}
535 // expected-error @+1 {{expected single unsigned integer for number of columns}}
/llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/
H A DLLVMIntrinsicOps.td261 /// columns - Number of columns in matrix (must be a constant)
262 /// stride - Space between columns
265 I32Attr:$rows, I32Attr:$columns);
277 $columns);
289 /// columns - Number of columns in matrix (must be a constant)
290 /// stride - Space between columns
294 I32Attr:$columns);
305 $rows, $columns);
328 /// Create a llvm.matrix.transpose call, transposing a `rows` x `columns` 2-D
331 let arguments = (ins LLVM_Type:$matrix, I32Attr:$rows, I32Attr:$columns);
[all …]
/llvm-project-15.0.7/flang/lib/Frontend/
H A DCompilerInvocation.cpp350 std::int64_t columns = -1; in parseFrontendArgs() local
352 columns = 0; in parseFrontendArgs()
353 } else if (argValue.getAsInteger(/*Radix=*/10, columns)) { in parseFrontendArgs()
354 columns = -1; in parseFrontendArgs()
356 if (columns < 0) { in parseFrontendArgs()
359 } else if (columns == 0) { in parseFrontendArgs()
361 } else if (columns < 7) { in parseFrontendArgs()
365 opts.fixedFormColumns = columns; in parseFrontendArgs()
/llvm-project-15.0.7/libc/benchmarks/
H A Dlibc-benchmark-analysis.py354 df = pd.DataFrame(Measurements, index=Index, columns=[getLabel(study)])
62 for col in df.columns:
81 local = pd.DataFrame(study["Measurements"], columns=["time"])
/llvm-project-15.0.7/clang/test/CodeGen/
H A Daligned-sret.c4 typedef struct { simd_double4 columns[4]; } simd_double4x4; member
/llvm-project-15.0.7/mlir/test/Target/LLVMIR/
H A Dopaque-ptr.mlir50 { isVolatile = 0: i1, rows = 3: i32, columns = 16: i32} :
55 { isVolatile = 0: i1, rows = 3: i32, columns = 16: i32} :
/llvm-project-15.0.7/mlir/test/Dialect/LLVMIR/
H A Dopaque-ptr.mlir51 { isVolatile = 0: i1, rows = 3: i32, columns = 16: i32} :
56 { isVolatile = 0: i1, rows = 3: i32, columns = 16: i32} :
/llvm-project-15.0.7/llvm/test/tools/llvm-symbolizer/pdb/
H A Dpdb-columns.test9 RUN: llvm-symbolizer --obj="%p/Inputs/test-columns.exe" < %t.input \
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVTypes.cpp209 return key == KeyTy(elementType, scope, rows, columns); in operator ==()
214 columns(std::get<3>(key)), scope(std::get<1>(key)) {} in CooperativeMatrixTypeStorage()
218 unsigned columns; member
224 unsigned columns) { in get() argument
225 return Base::get(elementType.getContext(), elementType, scope, rows, columns); in get()
237 return getImpl()->columns; in getColumns()
/llvm-project-15.0.7/mlir/test/Dialect/ArmNeon/
H A Dinvalid.mlir22 // expected-error@+1 {{operand `b` should have 4 columns}}
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dppc-shrink-wrapping.ll663 @columns = external global [0 x i32], align 4
686 %0 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 1), align 4
688 %1 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 2), align 4
691 %2 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 3), align 4
693 %3 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 7), align 4
695 %4 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 6), align 4
698 %5 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 5), align 4
705 %6 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 4), align 4
715 %7 = load i32, i32* getelementptr inbounds ([0 x i32], [0 x i32]* @columns, i64 0, i64 4), align 4
/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DMatrix.h44 Matrix(unsigned rows, unsigned columns, unsigned reservedRows = 0,
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DMatrix.cpp16 Matrix::Matrix(unsigned rows, unsigned columns, unsigned reservedRows, in Matrix() argument
18 : nRows(rows), nColumns(columns), in Matrix()
/llvm-project-15.0.7/third-party/benchmark/docs/
H A Dtools.md87 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
137 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
187 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
/llvm-project-15.0.7/clang/test/Analysis/
H A DkeychainAPI.m356 static int *bug10798(int *p, int columns, int prevRow) {
358 row = p + prevRow * columns;
362 row+=columns;

1234