Searched refs:groups (Results 1 – 5 of 5) sorted by relevance
/cmsis-nn-latest/Tests/UnitTest/RefactoredTestGen/Lib/ |
D | op_conv.py | 53 groups = params["groups"] 54 filter_ch = in_ch // groups 56 if in_ch % groups != 0: 57 …untimeError("ERROR: Input channels {} must be an even multiple of groups {}".format(in_ch, groups)) 58 if out_ch % groups != 0: 59 …timeError("ERROR: Output channels {} must be an even multiple of groups {}".format(out_ch, groups)) 84 groups=params["groups"],
|
/cmsis-nn-latest/Source/ConvolutionFunctions/ |
D | arm_convolve_s8.c | 91 const int32_t groups = input_ch / kernel_ch; in arm_convolve_s8() local 93 const int32_t output_ch_per_group = output_ch / groups; in arm_convolve_s8() 98 if (input_ch % groups != 0 || output_ch % groups != 0) in arm_convolve_s8() 127 for (int32_t i_group = 0; i_group < groups; i_group++) in arm_convolve_s8() 201 if (groups > 1) in arm_convolve_s8()
|
/cmsis-nn-latest/Tests/UnitTest/ |
D | conv_settings.py | 42 groups=1, argument 92 self.groups = groups 108 if groups != 1: 113 self.filter_ch = in_ch // groups 114 if in_ch % groups != 0: 115 …untimeError("ERROR: Input channels {} must be an even multiple of groups {}".format(in_ch, groups)) 116 if out_ch % groups != 0: 117 …timeError("ERROR: Output channels {} must be an even multiple of groups {}".format(out_ch, groups)) 140 if self.groups != 1: 344 groups=self.groups,
|
D | generate_test_data.py | 916 groups=2, 936 groups=2, 955 groups=2, 975 groups=3,
|
/cmsis-nn-latest/Documentation/Doxygen/ |
D | nn.dxy.in | 336 # separated into more groups, etc. 440 # Set the SUBGROUPING tag to YES to allow class member groups of the same type 2466 # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed 2467 # in the modules index. If set to NO, only the current project's groups will be 2573 # groups, showing the direct groups dependencies. See also the chapter Grouping
|