| /OK3568_Linux_fs/external/rknn-toolkit2/doc/ |
| H A D | RKNNToolKit2_OP_Support-1.5.0.md | 177 | aten::_convolution | same as onnx Conv | 181 | aten::adaptive_avg_pool2d | same as onnx AveragePool | 183 | aten::adaptive_max_pool2d | same as onnx MaxPool | 184 | aten::add | same as onnx Add | 186 | aten::addmm | same as onnx Gemm | 192 | aten::avg_pool2d | same as onnx AveragePool | 194 | aten::batch_norm | same as onnx BatchNormalization | 195 | aten::bmm | same as onnx MatMul | 196 | aten::cat | same as onnx Concat | 207 | aten::constant_pad_nd | same as onnx Pad | [all …]
|
| /OK3568_Linux_fs/docs/en/Common/NPU/rknn-toolkit2/ |
| H A D | RKNNToolKit2_OP_Support-1.4.0.md | 230 | BatchNorm | same as onnx BatchNormalization … 231 | bn (BatchNorm + Scale) | same as onnx BatchNormalization according to https://github.com/TimoSaem… 233 | Concat | same as onnx Concat … 234 | Convolution | same as onnx Conv … 235 | ConvolutionDepthwise | kernel height/width: [1, 8]<br />others same as onnx Conv … 237 | Deconvolution | same as ConvTranspose … 242 | InnerProduct | same as onnx Gemm … 243 | LRN | same as onnx LRN … 244 | Lstm | same as onnx LSTM according to https://github.com/xmfbit/warpctc-caffe … 246 | Permute | same as onnx Transpose … [all …]
|
| /OK3568_Linux_fs/docs/cn/Common/NPU/rknn-toolkit2/ |
| H A D | RKNNToolKit2_OP_Support-1.4.0.md | 230 | BatchNorm | same as onnx BatchNormalization … 231 | bn (BatchNorm + Scale) | same as onnx BatchNormalization according to https://github.com/TimoSaem… 233 | Concat | same as onnx Concat … 234 | Convolution | same as onnx Conv … 235 | ConvolutionDepthwise | kernel height/width: [1, 8]<br />others same as onnx Conv … 237 | Deconvolution | same as ConvTranspose … 242 | InnerProduct | same as onnx Gemm … 243 | LRN | same as onnx LRN … 244 | Lstm | same as onnx LSTM according to https://github.com/xmfbit/warpctc-caffe … 246 | Permute | same as onnx Transpose … [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/pauth/ |
| H A D | pac.c | 73 int same = 0; in n_same_single_set() local 86 same += 1; in n_same_single_set() 89 return same; in n_same_single_set() 254 int same = 10; in TEST() local 283 if (tmp < same) in TEST() 284 same = tmp; in TEST() 287 ASSERT_EQ(0, same) TH_LOG("%d keys clashed every time", same); in TEST() 299 int same = 10; in TEST() local 320 if (ret < same) in TEST() 321 same = ret; in TEST() [all …]
|
| /OK3568_Linux_fs/u-boot/test/dm/ |
| H A D | rtc.c | 38 bool same; in cmp_times() local 40 same = expect->tm_sec == time->tm_sec; in cmp_times() 41 same &= expect->tm_min == time->tm_min; in cmp_times() 42 same &= expect->tm_hour == time->tm_hour; in cmp_times() 43 same &= expect->tm_mday == time->tm_mday; in cmp_times() 44 same &= expect->tm_mon == time->tm_mon; in cmp_times() 45 same &= expect->tm_year == time->tm_year; in cmp_times() 46 if (!same && show) { in cmp_times() 51 return same ? 0 : -EINVAL; in cmp_times()
|
| /OK3568_Linux_fs/kernel/scripts/coccinelle/misc/ |
| H A D | array_size_dup.cocci | 5 /// 1. An opencoded expression is used before array_size() to compute the same size 6 /// 2. An opencoded expression is used after array_size() to compute the same size 43 msg = "WARNING: array_size is used later (line %s) to compute the same size" % (p2[0].line) 51 msg = "WARNING: array_size is used later (line %s) to compute the same size" % (p2[0].line) 72 msg = "WARNING: array_size is already used (line %s) to compute the same size" % (p1[0].line) 80 msg = "WARNING: array_size is already used (line %s) to compute the same size" % (p1[0].line) 108 msg = "WARNING: array3_size is used later (line %s) to compute the same size" % (p2[0].line) 116 msg = "WARNING: array3_size is used later (line %s) to compute the same size" % (p2[0].line) 138 msg = "WARNING: array3_size is already used (line %s) to compute the same size" % (p1[0].line) 146 msg = "WARNING: array3_size is already used (line %s) to compute the same size" % (p1[0].line) [all …]
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | remap_range.c | 214 bool same; in vfs_dedupe_file_range_compare() local 218 same = true; in vfs_dedupe_file_range_compare() 250 same = false; in vfs_dedupe_file_range_compare() 261 same = false; in vfs_dedupe_file_range_compare() 270 if (!same) in vfs_dedupe_file_range_compare() 278 *is_same = same; in vfs_dedupe_file_range_compare() 494 int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same) in vfs_dedupe_file_range() argument 502 u16 count = same->dest_count; in vfs_dedupe_file_range() 508 if (same->reserved1 || same->reserved2) in vfs_dedupe_file_range() 511 off = same->src_offset; in vfs_dedupe_file_range() [all …]
|
| H A D | ioctl.c | 623 struct file_dedupe_range *same = NULL; in ioctl_file_dedupe_range() local 639 same = memdup_user(argp, size); in ioctl_file_dedupe_range() 640 if (IS_ERR(same)) { in ioctl_file_dedupe_range() 641 ret = PTR_ERR(same); in ioctl_file_dedupe_range() 642 same = NULL; in ioctl_file_dedupe_range() 646 same->dest_count = count; in ioctl_file_dedupe_range() 647 ret = vfs_dedupe_file_range(file, same); in ioctl_file_dedupe_range() 651 ret = copy_to_user(argp, same, size); in ioctl_file_dedupe_range() 656 kfree(same); in ioctl_file_dedupe_range()
|
| /OK3568_Linux_fs/u-boot/drivers/input/ |
| H A D | input.c | 340 int same; /* number of elements which are the same */ in sort_array_by_ordering() local 352 same = dest_count; in sort_array_by_ordering() 360 return same; in sort_array_by_ordering() 375 int keycode[], int num_keycodes, int *same) in input_check_keycodes() argument 384 *same = sort_array_by_ordering(keycode, num_keycodes, in input_check_keycodes() 390 return *same != num_keycodes; in input_check_keycodes() 451 int max_chars, int same) in input_keycodes_to_ascii() argument 470 for (i = same; i < num_keycodes; i++) { in input_keycodes_to_ascii() 511 int count, i, same = 0; in _input_send_keycodes() local 516 if (!input_check_keycodes(config, keycode, num_keycodes, &same)) { in _input_send_keycodes() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/ |
| H A D | st,stih4xx.txt | 18 - clock-names: names of the clocks listed in clocks property in the same 36 - clock-names: names of the clocks listed in clocks property in the same 40 - reset-names: names of the resets listed in resets property in the same 50 the same order. 53 - reset-names: names of the resets listed in resets property in the same 62 the same order. 65 the same order 68 - clock-names: names of the clocks listed in clocks property in the same 78 the same order. 82 - clock-names: names of the clocks listed in clocks property in the same [all …]
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | latencytop.c | 97 int q, same = 1; in account_global_scheduler_latency() local 109 same = 0; in account_global_scheduler_latency() 117 if (same) { in account_global_scheduler_latency() 179 int same = 1; in __account_scheduler_latency() local 186 same = 0; in __account_scheduler_latency() 194 if (same) { in __account_scheduler_latency()
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | cputopology.rst | 41 internal kernel map of CPUs within the same core. 46 human-readable list of CPUs within the same core. 51 internal kernel map of the CPUs sharing the same physical_package_id. 56 human-readable list of CPUs sharing the same physical_package_id. 61 internal kernel map of CPUs within the same die. 65 human-readable list of CPUs within the same die. 69 internal kernel map of cpuX's hardware threads within the same 74 human-readable list of cpuX's hardware threads within the same 79 internal kernel map of cpuX's hardware threads within the same 84 human-readable list of cpuX's hardware threads within the same
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/usb/ |
| H A D | persist.rst | 22 has no way to know what has actually happened. Perhaps the same 35 system woke up, who cares? It'll still work the same when you type on 39 devices. The effect is exactly the same as if the device really had 47 interrupts a power session will have the same effect. For example, 83 same thing that happens whenever a USB device is reset.) If the 85 same descriptors as before, including the Vendor and Product IDs, then 86 the kernel continues to use the same device structure. In effect, the 90 The same thing happens if the host controller is in the expected state 125 have the same persistent volume associated with the device. As such 142 to make sure the USB device hasn't been changed; that is, the same [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/ |
| H A D | socionext-netsec.txt | 11 - phy-mode: See ethernet.txt file in the same directory 12 - phy-handle: See ethernet.txt in the same directory. 26 Optional properties: (See ethernet.txt file in the same directory) 29 - max-speed: See ethernet.txt in the same directory. 30 - max-frame-size: See ethernet.txt in the same directory.
|
| H A D | nixge.txt | 8 information of registers in the same order as described by reg-names. 14 - phy-mode: See ethernet.txt file in the same directory. 20 - fixed-link : Assume a fixed link. See fixed-link.txt in the same directory. 22 - phy-handle: See ethernet.txt file in the same directory.
|
| /OK3568_Linux_fs/kernel/tools/perf/Documentation/ |
| H A D | perf-buildid-cache.txt | 38 same directory and are also copied. All 3 files are created with read 40 kcore in the cache (with the same build-id) that has the same modules at 41 the same addresses. Use the -v option to see if a copy of kcore is 45 Remove a cached binary which has same build-id of specified file 62 exactly same build-id, that is replaced by new one. It can be used
|
| H A D | intel-bts.txt | 39 The snapshot option is the same as Intel PT (refer Intel PT documentation). 45 The mmap size option is the same as Intel PT (refer Intel PT documentation). 53 the same as Intel PT (refer Intel PT documentation) except that neither 76 This can be further controlled by new option --itrace exactly the same as
|
| /OK3568_Linux_fs/kernel/Documentation/core-api/ |
| H A D | refcount-vs-atomic.rst | 35 program order (po) relation (on the same CPU). It guarantees that 42 stores (all po-earlier instructions) on the same CPU are completed 43 before any po-later instruction is executed on the same CPU. 44 It also guarantees that all po-earlier stores on the same CPU 50 stores (all po-earlier instructions) on the same CPU are completed 52 stores on the same CPU and all propagated stores from other CPUs 58 stores (all po-later instructions) on the same CPU are 60 po-later stores on the same CPU must propagate to all other CPUs
|
| /OK3568_Linux_fs/u-boot/doc/device-tree-bindings/net/ |
| H A D | altera_tse.txt | 7 the information of registers in the same order as described by reg-names 22 - phy-mode: See ethernet.txt in the same directory. 23 - phy-handle: See ethernet.txt in the same directory. 24 - phy-addr: See ethernet.txt in the same directory. A configuration should 48 - local-mac-address: See ethernet.txt in the same directory. 49 - max-frame-size: See ethernet.txt in the same directory.
|
| H A D | ethernet.txt | 16 - phy-connection-type: the same as "phy-mode" property but described in ePAPR; 19 - phy: the same as "phy-handle" property, not recommended for new bindings. 20 - phy-device: the same as "phy-handle" property, not recommended for new 25 They are described in the phy.txt file in this same directory.
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/ |
| H A D | st,sti-asoc-card.txt | 20 - clock-names: name of the clocks listed in clocks property in the same order 22 - reg: CPU DAI IP Base address and size entries, listed in same 26 the same order. 28 - interrupts: CPU_DAI interrupt line, listed in the same order than the 31 - dma: CPU_DAI DMA controller phandle and DMA request line, listed in the same 39 - clocks: CPU_DAI IP clock source, listed in the same order than the
|
| /OK3568_Linux_fs/buildroot/package/glibc/2.28-69-g1e5c5303a522764d7e9d2302a60e4a32cdb902f1/ |
| H A D | 0018-Disable-Wmaybe-uninitialized-for-total_deadline-in-s.patch | 11 The same error has now appeared with current GCC trunk for MIPS, in a 14 patch adds the same disabling around the definition of that variable, 49 + is initialized conditionally and only ever used under the same 50 + condition. The same warning is also disabled in
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/cherokee/cherokee/ |
| H A D | cherokee-install-configured.py-once.patch | 7 install the configured.py to the same location, they can run parallel, 16 there is no side effect since it installed the same file to the same
|
| /OK3568_Linux_fs/kernel/Documentation/virt/kvm/devices/ |
| H A D | vcpu.rst | 8 KVM_GET_DEVICE_ATTR, and KVM_HAS_DEVICE_ATTR. The interface uses the same struct 39 type must be same for each vcpu. As a PPI, the interrupt number is the same for 97 Note: "Cancelling" a filter by registering the opposite action for the same 100 action for the same range will leave the whole range as disabled. 135 Setting the same PPI for different timers will prevent the VCPUs from running.
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/video/ |
| H A D | rockchip_codec.txt | 36 If two devices have the same reset clk, they should in the same reset group. 40 If two devices have the same reset clk, the reset-name should stay the same
|