HomeSort by relevance Sort by last modified time
    Searched refs:EmitAssert (Results 1 - 6 of 6) sorted by null

  /external/gemmlowp/meta/generators/
zip_Nx8_neon.py 257 emitter.EmitAssert('count %% 8 == %d' % leftovers)
258 emitter.EmitAssert('count <= 2048')
259 emitter.EmitAssert('count >= 8')
260 emitter.EmitAssert('reinterpret_cast<std::uintptr_t>(destination) % 8 == 0')
262 emitter.EmitAssert('reinterpret_cast<std::uintptr_t>(source) % 8 == 0')
264 emitter.EmitAssert('stride % 8 == 0')
qnt_Nx8_neon.py 329 emitter.EmitAssert('count %% 8 == %d' % leftovers)
330 emitter.EmitAssert('count >= 8')
331 emitter.EmitAssert('reinterpret_cast<std::uintptr_t>(source) % 8 == 0')
333 emitter.EmitAssert('reinterpret_cast<std::uintptr_t>(destination) % 8 == 0')
335 emitter.EmitAssert(
gemm_NxMxK_neon.py 236 emitter.EmitAssert('m %% 3 == %d' % rows)
237 emitter.EmitAssert('n %% 3 == %d' % cols)
238 emitter.EmitAssert('k %% 8 == %d' % leftovers)
cc_emitter.py 72 def EmitAssert(self, assert_expression):
mul_Nx8_Mx8_neon.py 371 emitter.EmitAssert('count % 8 == 0')
372 emitter.EmitAssert('count >= 8')
neon_emitter.py 159 def EmitAssert(self, assert_expression):

Completed in 57 milliseconds