HomeSort by relevance Sort by last modified time
    Searched refs:chip (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/tensorflow/tensorflow/core/kernels/
data_format_ops.h 54 output.template chip<0>(0).device(d) = input.template chip<0>(0);
55 output.template chip<0>(1).device(d) = input.template chip<0>(1);
56 output.template chip<0>(2).device(d) = input.template chip<0>(6);
57 output.template chip<0>(3).device(d) = input.template chip<0>(7);
58 output.template chip<0>(4).device(d) = input.template chip<0>(2)
    [all...]
cross_op.h 33 auto s1 = output_data.template chip<1>(0);
34 auto s2 = output_data.template chip<1>(1);
35 auto s3 = output_data.template chip<1>(2);
37 auto u1 = in0_data.template chip<1>(0);
38 auto u2 = in0_data.template chip<1>(1);
39 auto u3 = in0_data.template chip<1>(2);
41 auto v1 = in1_data.template chip<1>(0);
42 auto v2 = in1_data.template chip<1>(1);
43 auto v3 = in1_data.template chip<1>(2);
colorspace_op.h 33 auto H = output_data.template chip<1>(0);
34 auto S = output_data.template chip<1>(1);
35 auto V = output_data.template chip<1>(2);
37 auto R = input_data.template chip<1>(0);
38 auto G = input_data.template chip<1>(1);
39 auto B = input_data.template chip<1>(2);
70 auto H = input_data.template chip<1>(0);
71 auto S = input_data.template chip<1>(1);
72 auto V = input_data.template chip<1>(2);
81 auto R = output_data.template chip<1>(0)
    [all...]
eigen_attention.h 152 mini.device(device) = input.template chip<3>(i).minimum();
154 range.device(device) = (input.template chip<3>(i).maximum() - mini)
159 output.template chip<3>(i).device(device) =
174 mean.device(device) = input.template chip<3>(i)
175 .template chip<0>(j)
180 (input.template chip<3>(i)
181 .template chip<0>(j)
189 input.template chip<3>(i).template chip<0>(j).minimum();
192 input.template chip<3>(i).template chip<0>(j).maximum()
    [all...]
fake_quant_ops_functor.h 208 auto chip = outputs.chip<1>(i);
209 chip.device(d) = chip.constant(0.0f);
216 inputs.chip<1>(i).cwiseMin(nudged_max).cwiseMax(nudged_min);
219 outputs.chip<1>(i).device(d) =
241 const auto gradients_chip = gradients.chip<1>(i);
242 const auto inputs_chip = inputs.chip<1>(i);
245 backprops_wrt_input.chip<1>(i).device(d) = gradients_chip;
246 auto min_chip = backprop_wrt_min.chip<0>(i)
    [all...]
scatter_functor.h 150 scatter_op::internal::Assign<op>::Run(params.template chip<0>(index),
151 updates.template chip<0>(i));
175 d, params.template chip<0>(index), updates.template chip<0>(i));
211 params.template chip<0>(index), updates.template chip<0>(i));
237 d, params.template chip<0>(index), updates.template chip<0>(i));
  /external/drm_gralloc/pci_ids/
pci_id_driver_map.h 12 #define CHIPSET(chip, desc, misc) chip,
19 #define CHIPSET(chip, desc, misc) chip,
25 #define CHIPSET(chip, desc, misc) chip,
32 #define CHIPSET(chip, name, family) chip,
38 #define CHIPSET(chip, name, family) chip,
    [all...]
  /external/mesa3d/src/loader/
pci_id_driver_map.h 15 #define CHIPSET(chip, desc, name) chip,
21 #define CHIPSET(chip, family, name) chip,
27 #define CHIPSET(chip, name, family) chip,
33 #define CHIPSET(chip, name, family) chip,
39 #define CHIPSET(chip, name, family) chip,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_sensors_temp.c 59 /* Combined chip and feature name, human readable. */
70 sensors_chip_name *chip; member in struct:sensors_temp_info
96 sf = sensors_get_subfeature(sti->chip, sti->feature,
99 sti->current = get_value(sti->chip, sf);
102 sf = sensors_get_subfeature(sti->chip, sti->feature,
107 sti->current = get_value(sti->chip, sf) * 1000;
111 sf = sensors_get_subfeature(sti->chip, sti->feature,
114 sti->current = get_value(sti->chip, sf);
117 sf = sensors_get_subfeature(sti->chip, sti->feature,
120 sti->critical = get_value(sti->chip, sf)
271 const sensors_chip_name *chip; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_context.cpp 43 int sb_context::init(r600_isa *isa, sb_hw_chip chip, sb_hw_class cclass) {
44 if (chip == HW_CHIP_UNKNOWN || cclass == HW_CLASS_UNKNOWN)
49 hw_chip = chip;
62 uses_mova_gpr = is_r600() && chip != HW_CHIP_RV670;
64 r6xx_gpr_index_workaround = is_r600() && chip != HW_CHIP_RV670 && chip != HW_CHIP_RS780 && chip != HW_CHIP_RS880;
66 switch (chip) {
104 assert(!"unknown chip class");
140 assert(!"unknown chip");
    [all...]
  /external/autotest/server/site_tests/firmware_CompareChipFwToShellBall/
firmware_CompareChipFwToShellBall.py 26 """Compares the active DUT chip firmware with reference.
28 FAFT test to verify that a DUT runs the expected chip
54 """Gets the chip info for a port.
60 A chip object if available, else None.
63 cmd = 'mosys -s product_id pd chip %d' % port
66 # chip probably does not exist
71 logging.info('chip type %s not recognized', chip_id)
73 chip = chip_utils.chip_id_map[chip_id]()
75 cmd = 'mosys -s fw_version pd chip %d' % port
78 # chip probably does not exis
    [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_chipping.cpp 23 chip1 = tensor.template chip<0>(1);
40 Tensor<float, 4, DataLayout> chip2 = tensor.template chip<1>(1);
55 Tensor<float, 4, DataLayout> chip3 = tensor.template chip<2>(2);
70 Tensor<float, 4, DataLayout> chip4(tensor.template chip<3>(5));
85 Tensor<float, 4, DataLayout> chip5(tensor.template chip<4>(7));
108 chip1 = tensor.chip(1, 0);
123 Tensor<float, 4, DataLayout> chip2 = tensor.chip(1, 1);
138 Tensor<float, 4, DataLayout> chip3 = tensor.chip(2, 2);
153 Tensor<float, 4, DataLayout> chip4(tensor.chip(5, 3));
168 Tensor<float, 4, DataLayout> chip5(tensor.chip(7, 4))
349 auto chip = Evaluator4(tensor.chip<4>(3), DefaultDevice()); local
384 auto chip = Evaluator0(tensor.chip<0>(3), DefaultDevice()); local
    [all...]
cxx11_tensor_custom_op.cpp 78 output.template chip<2>(i).device(device) = input1.chip<2>(i).contract(input2.chip<2>(i), dims);
96 Tensor<float, 2> reference = tensor1.chip<2>(i).contract(tensor2.chip<2>(i), dims);
97 TensorRef<Tensor<float, 2> > val = result.chip<2>(i);
cxx11_tensor_const.cpp 44 Tensor<int, 2> result1 = constant1.chip(0, 2);
45 Tensor<int, 2> result2 = constant2.chip(0, 2);
46 Tensor<int, 2> result3 = constant3.chip(0, 2);
  /external/autotest/server/site_tests/firmware_ChipFwUpdate/
firmware_ChipFwUpdate.py 55 Then, if new chip firmware blobs are offered, they
84 # set of chip types found in CBFS
86 # dict of chip FW updates from the cmd line
92 for chip in chip_utils.chip_id_map.itervalues():
93 chip_name = chip.chip_name
99 c = chip()
103 logging.info('request chip %s fw 0x%02x from command line',
121 Iterates over requested chip updates and looks for corresponding
126 for chip in self.req_chip_updates.itervalues():
128 chip.chip_name, self.BIOS
    [all...]
  /external/linux-kselftest/tools/testing/selftests/gpio/
gpio-mockup-sysfs.sh 106 chip=$1
107 name=`basename $chip`
108 base=`cat $chip/base`
109 ngpio=`cat $chip/ngpio`
130 for chip in $gpiochip; do
131 test_chip $chip
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Drivers/
PL35xSmc.h 30 #define PL350_SMC_DIRECT_CMD_ADDR_CS_INTERF(interf,chip) (((interf) << 25) | ((chip) << 23))
  /external/walt/hardware/
README.md 16 Alternatively use the ADXL335 chip directly without the breakout board, but it's rather difficult to solder manually.
  /hardware/interfaces/wifi/1.0/
IWifi.hal 91 * Retrieve the list of all chip Id's on the device.
92 * The corresponding |IWifiChip| object for any chip can be
100 * @return chipIds List of all chip Id's on the device.
106 * Gets a HIDL interface object for the chip corresponding to the
114 * @return chip HIDL interface object representing the chip.
117 getChip(ChipId chipId) generates (WifiStatus status, IWifiChip chip);
  /device/linaro/hikey/installer/hikey/
hisi-idt.py 84 self.chip = chiptype
118 data = array.array('B', self.startframe[self.chip]).tostring()
126 self.headframe[self.chip][4] = (length>>24)&0xff
127 self.headframe[self.chip][5] = (length>>16)&0xff
128 self.headframe[self.chip][6] = (length>>8)&0xff
129 self.headframe[self.chip][7] = (length)&0xff
130 self.headframe[self.chip][8] = (address>>24)&0xff
131 self.headframe[self.chip][9] = (address>>16)&0xff
132 self.headframe[self.chip][10] = (address>>8)&0xff
133 self.headframe[self.chip][11] = (address)&0xf
    [all...]
  /external/python/cpython2/Tools/pynche/
StripViewer.py 19 the selected chip, which includes the value along that particular axis.
21 Clicking on any chip in any StripWidget selects that color, and updates all
185 # the last chip selected
206 # set_color() method to speed up setting the chip colors.
213 tags = ('chip',)
248 chip = canvas.find_overlapping(x, y, x, y)
249 if chip and (1 <= chip[0] <= self.__numchips):
250 color = self.__chips[chip[0]-1]
258 self.__trackarrow(chip[0], (red, green, blue)
    [all...]
  /external/python/cpython3/Tools/pynche/
StripViewer.py 19 the selected chip, which includes the value along that particular axis.
21 Clicking on any chip in any StripWidget selects that color, and updates all
185 # the last chip selected
206 # set_color() method to speed up setting the chip colors.
213 tags = ('chip',)
248 chip = canvas.find_overlapping(x, y, x, y)
249 if chip and (1 <= chip[0] <= self.__numchips):
250 color = self.__chips[chip[0]-1]
258 self.__trackarrow(chip[0], (red, green, blue)
    [all...]
  /external/libdrm/nouveau/nvif/
cl0080.h 36 char chip[16]; member in struct:nv_device_info_v0
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
HalDeviceManagerTest.java 155 // Chip Independent Tests
291 * Validates that when (for some reason) the cache is out-of-sync with the actual chip status
301 mInOrder = inOrder(mServiceManagerMock, mWifiMock, chipMock.chip,
346 // fiddle with the "chip" by removing the STA
362 // registered (even if they seem out-of-sync to chip)
385 mInOrder = inOrder(mServiceManagerMock, mWifiMock, chipMock.chip,
427 * Validate that when no chip info is found an empty list is returned.
453 mInOrder = inOrder(mServiceManagerMock, mWifiMock, chipMock.chip,
472 mInOrder = inOrder(mServiceManagerMock, mWifiMock, chipMock.chip);
490 mInOrder = inOrder(mServiceManagerMock, mWifiMock, chipMock.chip);
2847 public IWifiChip chip; field in class:HalDeviceManagerTest.ChipMockBase
    [all...]
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEditTextView.java 205 // Chip copy fields.
320 * Callback that occurs when a chip is deleted.
321 * @param entry RecipientEntry that contains information about the chip.
331 * Callback that occurs when a chip is added.
333 * @param entry RecipientEntry that contains information about the chip.
527 for (DrawableRecipientChip chip : mHiddenSpans) {
528 results.add(chip.getEntry());
539 // Only exception is when we change the selection due to a selected chip.
542 // Grab the last chip and set the cursor to after it.
768 // In the middle of chip; treat this as an edi
1468 DrawableRecipientChip chip = null; local
2214 DrawableRecipientChip chip = constructChipSpan(entry); local
2275 CharSequence chip = createChip(entry); local
3466 final CharSequence chip = createChip(entry); local
    [all...]

Completed in 833 milliseconds

1 2 3 4