Home
last modified time | relevance | path

Searched full:matrix (Results 1 – 25 of 655) sorted by relevance

12345678910>>...27

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h1 //===- Math.h - PBQP Vector and Matrix classes ------------------*- C++ -*-===//
109 /// PBQP Matrix class
110 class Matrix {
112 friend hash_code hash_value(const Matrix &);
115 /// Construct a PBQP Matrix with the given dimensions.
116 Matrix(unsigned Rows, unsigned Cols) : in Matrix() function
120 /// Construct a PBQP Matrix with the given dimensions and initial
122 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() function
128 /// Copy construct a PBQP matrix.
129 Matrix(const Matrix &M) in Matrix() function
[all …]
H A DReductionRules.h34 using Matrix = typename GraphT::Matrix; in applyR1() local
43 const Matrix &ECosts = G.getEdgeCosts(EId); in applyR1()
78 using Matrix = typename GraphT::Matrix; in applyR2() local
96 const Matrix *YXECosts = FlipEdge1 ? in applyR2()
97 new Matrix(G.getEdgeCosts(YXEId).transpose()) : in applyR2()
100 const Matrix *ZXECosts = FlipEdge2 ? in applyR2()
101 new Matrix(G.getEdgeCosts(ZXEId).transpose()) : in applyR2()
134 const Matrix &YZECosts = G.getEdgeCosts(YZEId); in applyR2()
182 using Matrix = typename GraphT::Matrix; in backpropagate() local
203 const Matrix& edgeCosts = G.getEdgeCosts(EId); in backpropagate()
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Datmel-matrix.txt1 * Device tree bindings for Atmel Bus Matrix
3 The Bus Matrix registers are used to configure Atmel SoCs internal bus
8 "atmel,at91sam9260-matrix", "syscon"
9 "atmel,at91sam9261-matrix", "syscon"
10 "atmel,at91sam9263-matrix", "syscon"
11 "atmel,at91sam9rl-matrix", "syscon"
12 "atmel,at91sam9g45-matrix", "syscon"
13 "atmel,at91sam9n12-matrix", "syscon"
14 "atmel,at91sam9x5-matrix", "syscon"
15 "atmel,sama5d3-matrix", "sysco
[all...]
H A Datmel,at91sam9260-matrix.yaml4 $id: http://devicetree.org/schemas/mfd/atmel,at91sam9260-matrix.yaml#
7 title: Microchip AT91 Bus Matrix
13 The Bus Matrix (MATRIX) implements a multi-layer AHB, based on the
22 - atmel,at91sam9260-matrix
23 - atmel,at91sam9261-matrix
24 - atmel,at91sam9263-matrix
25 - atmel,at91sam9rl-matrix
26 - atmel,at91sam9g45-matrix
27 - atmel,at91sam9n12-matrix
28 - atmel,at91sam9x5-matrix
[all …]
/freebsd/crypto/openssh/.github/workflows/
H A Dselfhosted.yml9 name: "${{ matrix.target }} ${{ matrix.config }}"
11 runs-on: ${{ matrix.host }}
14 HOST: ${{ matrix.host }}
15 TARGET_HOST: ${{ matrix.target }}
16 TARGET_CONFIG: ${{ matrix.config }}
17 …T_DOMAIN: ${{ startsWith(matrix.host, 'libvirt') && format('{0}-{1}-{2}', matrix.target, matrix.co…
18 EPHEMERAL: ${{ startsWith(matrix.host, 'libvirt') }}
19 PERSISTENT: ${{ startsWith(matrix.host, 'persist') }}
20 REMOTE: ${{ startsWith(matrix.host, 'remote') }}
21 VM: ${{ startsWith(matrix.host, 'libvirt') || startsWith(matrix.host, 'persist') }}
[all …]
H A Dupstream.yml10 name: "upstream ${{ matrix.target }} ${{ matrix.config }}"
12 runs-on: ${{ matrix.host }}
15 HOST: ${{ matrix.host }}
16 TARGET_HOST: ${{ matrix.target }}
17 TARGET_CONFIG: ${{ matrix.config }}
18 …TARGET_DOMAIN: ${{ format('{0}-{1}-{2}', matrix.target, matrix.config, github.run_id) || matrix.ta…
21 matrix:
50 case ${{ matrix.config }} in \
65 …run: vmrun "cd /usr/src/regress/usr.bin/ssh && case ${{ matrix.config }} in without-openssl) make …
76 name: ${{ matrix.target }}-${{ matrix.config }}-logs
H A Dc-cpp.yml22 name: "${{ matrix.target }} ${{ matrix.config }}"
26 matrix:
124 runs-on: ${{ matrix.target }}
131 …run: sh -c 'if [ "${{ vars.RUN_ONLY_TARGET_CONFIG }}" != "${{ matrix.target }} ${{matrix.config }}…
133 if: ${{ startsWith(matrix.target, 'windows') }}
137 if: ${{ startsWith(matrix.target, 'windows') }}
143 … 1200 .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }} || .github/setup_ci.sh ${{ mat…
149 run: sh ./.github/configure.sh ${{ matrix.config }}
153 name: ${{ matrix.target }}-${{ matrix.config }}-config
160 run: sh ./.github/run_test.sh ${{ matrix.config }}
[all …]
H A Dvm.yml16 name: "dragonflybsd-${{ matrix.target }}"
20 matrix:
30 - name: start DragonFlyBSD ${{ matrix.target }} VM
33 release: ${{ matrix.target }}
76 name: "freebsd-${{ matrix.target }}"
80 matrix:
93 - name: start FreeBSD ${{ matrix.target }} VM
96 release: ${{ matrix.target }}
158 name: "netbsd-${{ matrix.target }}"
162 matrix:
[all …]
/freebsd/.github/workflows/
H A Dcross-bootstrap-tools.yml15 name: ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }})
16 runs-on: ${{ matrix.os }}
19 matrix:
46 sudo apt-get -yq --no-install-suggests --no-install-recommends install ${{ matrix.pkgs }}
51 brew install ${{ matrix.pkgs }} || true
55 if [ -n "${{ matrix.cross-bindir }}" ]; then
56 echo "EXTRA_BUILD_ARGS=--cross-bindir=${{ matrix.cross-bindir }}" >> $GITHUB_ENV
58 if [ -n "${{ matrix.cross-toolchain }}" ]; then
59 echo "EXTRA_BUILD_ARGS=--cross-toolchain=${{ matrix.cross-toolchain }}" >> $GITHUB_ENV
66 …tools/build/make.py --debug $EXTRA_BUILD_ARGS TARGET=${{ matrix.target }} TARGET_ARCH=${{ matrix.t…
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h1 //===- llvm/MatrixBuilder.h - Builder to lower matrix ops -------*- C++ -*-===//
10 // to lower matrix operations to LLVM IR.
40 "One of the operands must be a matrix (embedded in a vector)"); in splatScalarOperandIfNeeded()
60 /// Create a column major, strided matrix load.
61 /// \p EltTy - Matrix element type
62 /// \p DataPtr - Start address of the matrix read
63 /// \p Rows - Number of rows in matrix (must be a constant)
64 /// \p Columns - Number of columns in matrix (must be a constant)
85 /// Create a column major, strided matrix store.
86 /// \p Matrix - Matrix to store
[all …]
/freebsd/sys/dev/sound/pcm/
H A Dfeeder_matrix.c41 * + very generic and compact, provided that the supplied matrix map is in a
47 * + 'matrix' is kind of 0x7a69, due to prolong mental block.
75 } matrix[SND_CHN_T_MAX + 1]; member
126 for (i = 0; info->matrix[i].chn[0] != SND_CHN_T_EOF; i++) { in feed_matrix_apply()
127 if (info->matrix[i].chn[0] == SND_CHN_T_NULL) { in feed_matrix_apply()
131 } else if (info->matrix[i].chn[1] == SND_CHN_T_EOF) { in feed_matrix_apply()
133 info->matrix[i].chn[0], fmt); in feed_matrix_apply()
140 for (j = 0; info->matrix[i].chn[j] != SND_CHN_T_EOF; in feed_matrix_apply()
143 info->matrix[i].chn[j], fmt); in feed_matrix_apply()
147 accum = (accum * info->matrix[i].mul) >> in feed_matrix_apply()
[all …]
H A Dfeeder_chain.c41 struct pcmchan_matrix *matrix; /* matrix map */ member
185 cdesc->current.matrix->channels, cdesc->current.matrix->ext); in feeder_build_formatne()
300 cdesc->target.matrix->channels, cdesc->target.matrix->ext); in feeder_build_matrix()
310 ret = feeder_matrix_setup(f, cdesc->current.matrix, in feeder_build_matrix()
311 cdesc->target.matrix); in feeder_build_matrix()
321 cdesc->current.matrix = cdesc->target.matrix; in feeder_build_matrix()
379 ret = feeder_volume_apply_matrix(f, cdesc->current.matrix); in feeder_build_volume()
513 #define FEEDER_BW(c, t) ((c)->t.matrix->channels * (c)->t.rate)
519 #define FEEDMATRIX_UP(c) ((c)->target.matrix->channels > \
520 (c)->current.matrix->channels)
[all …]
H A Dfeeder_volume.c53 feed_volume_##SIGN##BIT##ENDIAN(int *vol, int *matrix, \
68 v = FEEDVOLUME_CALC##BIT(x, vol[matrix[i]]); \
99 int matrix[SND_CHN_MAX]; member
236 int i, *matrix; in feed_volume_feed() local
252 matrix = info->matrix; in feed_volume_feed()
260 if (vol[matrix[i]] != SND_VOL_FLAT || in feed_volume_feed()
261 muted[matrix[i]] != 0) { in feed_volume_feed()
293 info->apply(temp_vol, matrix, info->channels, dst, j); in feed_volume_feed()
317 * feeder_volume_apply_matrix(): For given matrix map, apply its configuration
318 * to feeder_volume matrix structure. There are
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_sa_multipath_record.c1345 osm_sa_item_t *matrix[2][2]; in mpr_rcv_get_apm_paths() local
1389 matrix[0][0] = in mpr_rcv_get_apm_paths()
1393 matrix[0][1] = in mpr_rcv_get_apm_paths()
1397 matrix[1][0] = in mpr_rcv_get_apm_paths()
1401 matrix[1][1] = in mpr_rcv_get_apm_paths()
1406 OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "APM matrix:\n" in mpr_rcv_get_apm_paths()
1409 matrix[0][0] ? matrix[0][0]->resp.mpr_rec.path_rec.slid : 0, in mpr_rcv_get_apm_paths()
1410 matrix[0][0] ? matrix[0][0]->resp.mpr_rec.path_rec.dlid : 0, in mpr_rcv_get_apm_paths()
1411 matrix[0][0] ? matrix[0][0]->resp.mpr_rec.hops : 0, in mpr_rcv_get_apm_paths()
1412 matrix[0][1] ? matrix[0][1]->resp.mpr_rec.path_rec.slid : 0, in mpr_rcv_get_apm_paths()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dgpio-matrix-keypad.txt1 * GPIO driven matrix keypad device tree bindings
3 GPIO driven matrix keypad is used to interface a SoC with a matrix keypad.
4 The matrix keypad supports multiple row and column lines, a key can be
5 placed at each intersection of a unique row and a unique column. The matrix
10 - compatible: Should be "gpio-matrix-keypad"
18 bindings/input/matrix-keymap.txt
31 matrix-keypad {
32 compatible = "gpio-matrix-keypad";
H A Dgpio-matrix-keypad.yaml5 $id: http://devicetree.org/schemas/input/gpio-matrix-keypad.yaml#
8 title: GPIO matrix keypad
14 GPIO driven matrix keypad is used to interface a SoC with a matrix keypad.
15 The matrix keypad supports multiple row and column lines, a key can be
16 placed at each intersection of a unique row and a unique column. The matrix
22 - $ref: /schemas/input/matrix-keymap.yaml#
26 const: gpio-matrix-keypad
82 matrix-keypad {
83 compatible = "gpio-matrix-keypad";
/freebsd/contrib/file/magic/Magdir/
H A Dmathematica127 # check for valid imaginary flag of Matlab matrix version 4
129 # check for valid ASCII matrix name
138 # no example for 8-bit and 16-bit integers matrix
141 # branch for Little-Endian variant of Matlab MATrix version 4
146 # no misidentified little endian MATrix example with "short" matrix name
149 # by check for non zero matrix name length
152 # little endian MATrix with "long" matrix name or some misidentified samples
154 # skip TileCacheLogo-*.dat with invalid 2nd character \001 of matrix name with length 96
163 …e header with 5 long integers that contains information describing certain attributes of the Matrix
174 # namlen; the length of the matrix name
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/
H A Dmount-matrix.txt5 * should we have HOWTO engineer a correct matrix for a new device (without comparing to a different…
10 Mounting matrix
12 The mounting matrix is a device tree property used to orient any device
16 The purpose of the mounting matrix is to translate the sensor frame of
17 reference into the device frame of reference using a translation matrix as
43 to this world. When using the mounting matrix, the sensor and device orientation
154 To achieve this, use the device tree property "mount-matrix" for the sensor.
156 This supplies a 3x3 rotation matrix in the strict linear algebraic sense,
159 multiplied by this matrix to give the proper vectors values in three-dimensional
165 The mounting matrix has the layout:
[all …]
/freebsd/sys/contrib/device-tree/Bindings/display/imx/
H A Dfsl,imx8qxp-dc-matrix.yaml4 $id: http://devicetree.org/schemas/display/imx/fsl,imx8qxp-dc-matrix.yaml#
7 title: Freescale i.MX8qxp Display Controller Color Matrix
18 const: fsl,imx8qxp-dc-matrix
26 - const: cfg # matrix in display engine
27 - items: # matrix in pixel engine
40 matrix@5618bc00 {
41 compatible = "fsl,imx8qxp-dc-matrix";
/freebsd/crypto/libecc/.github/workflows/
H A Dlibecc_compilation_tests.yml11 matrix:
26 CC: ${{ matrix.cc }}
27 BLINDING: ${{ matrix.blinding }}
28 COMPLETE: ${{ matrix.complete }}
29 LADDER: ${{ matrix.ladder }}
30 CRYPTOFUZZ: ${{ matrix.cryptofuzz }}
31 EXTRA_LIB_CFLAGS: ${{ matrix.optflags }}
32 EXTRA_BIN_CFLAGS: ${{ matrix.optflags }}
/freebsd/contrib/libyaml/.github/workflows/
H A Dmain.yml13 runs-on: ${{ matrix.os }}
15 matrix:
29 if [[ '${{ matrix.os }}' == macOS-latest ]]; then
50 run: ${{ matrix.compiler }} --version
52 CC: ${{ matrix.compiler }}
55 CC: ${{ matrix.compiler }}
58 CC: ${{ matrix.compiler }}
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp72 /// Performs matrix transposition on a 4x4 matrix \p InputVectors and
316 ArrayRef<Instruction *> Matrix, in interleave8bitStride4VF8() argument
319 // Matrix[0]= c0 c1 c2 c3 c4 ... c7 in interleave8bitStride4VF8()
320 // Matrix[1]= m0 m1 m2 m3 m4 ... m7 in interleave8bitStride4VF8()
321 // Matrix[2]= y0 y1 y2 y3 y4 ... y7 in interleave8bitStride4VF8()
322 // Matrix[3]= k0 k1 k2 k3 k4 ... k7 in interleave8bitStride4VF8()
342 Builder.CreateShuffleVector(Matrix[0], Matrix[1], MaskLow); in interleave8bitStride4VF8()
344 Builder.CreateShuffleVector(Matrix[2], Matrix[3], MaskLow); in interleave8bitStride4VF8()
356 ArrayRef<Instruction *> Matrix, SmallVectorImpl<Value *> &TransposedMatrix, in interleave8bitStride4() argument
359 // Matrix[0]= c0 c1 c2 c3 c4 ... c31 in interleave8bitStride4()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp1 //===- LowerMatrixIntrinsics.cpp - Lower matrix intrinsics -----*- C++ -*-===//
9 // Lower matrix intrinsics to vector operations.
58 #define DEBUG_TYPE "lower-matrix-intrinsics"
60 STATISTIC(FlattenedMatrices, "Number of matrix flattenings");
61 STATISTIC(ReshapedMatrices, "Number of matrix reshapes");
62 STATISTIC(SplitMatrices, "Number of matrix splits");
65 FuseMatrix("fuse-matrix", cl::init(true), cl::Hidden,
66 cl::desc("Enable/disable fusing matrix instructions."));
69 "fuse-matrix-tile-size", cl::init(4), cl::Hidden,
71 "Tile size for matrix instruction fusion using square-shaped tiles."));
[all …]
/freebsd/crypto/openssl/crypto/ml_dsa/
H A Dml_dsa_matrix.h10 /* A 'k' by 'l' Matrix object ('k' rows and 'l' columns) containing polynomial scalars */
17 * @brief Initialize a Matrix object.
19 * @param m The matrix object.
26 matrix_init(MATRIX *m, POLY *polys, size_t k, size_t l) in matrix_init()
34 matrix_mult_vector(const MATRIX *a, const VECTOR *s, VECTOR *t) in matrix_mult_vector()
41 MATRIX *out) in matrix_expand_A()
/freebsd/contrib/libfido2/.github/workflows/
H A Dcifuzz_oss.yml23 matrix:
26 - name: build fuzzers (${{ matrix.sanitizer }})
31 sanitizer: ${{ matrix.sanitizer }}
33 - name: run fuzzers (${{ matrix.sanitizer }})
38 sanitizer: ${{ matrix.sanitizer }}
45 name: ${{ matrix.sanitizer }}-artifacts

12345678910>>...27