/external/llvm-project/llvm/test/MC/Mips/ |
D | module-directive-bad.s | 6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 26 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 30 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 34 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 38 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 42 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code [all …]
|
/external/llvm/test/MC/Mips/ |
D | module-directive-bad.s | 6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 26 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 30 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 34 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 38 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 42 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code [all …]
|
/external/llvm-project/llvm/test/MC/RISCV/ |
D | rv32i-invalid.s | 5 fence iorw, iore # CHECK: :[[@LINE]]:13: error: operand must be formed of letters selected in-order… 6 fence wr, wr # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-order from… 7 fence rw, rr # CHECK: :[[@LINE]]:11: error: operand must be formed of letters selected in-order fro… 8 fence 1, rw # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-order from … 9 fence unknown, unknown # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-… 12 slli a0, a0, 32 # CHECK: :[[@LINE]]:14: error: immediate must be an integer in the range [0, 31] 13 srli a0, a0, -1 # CHECK: :[[@LINE]]:14: error: immediate must be an integer in the range [0, 31] 14 srai a0, a0, -19 # CHECK: :[[@LINE]]:14: error: immediate must be an integer in the range [0, 31] 15 csrrwi a1, 0x1, -1 # CHECK: :[[@LINE]]:17: error: immediate must be an integer in the range [0, 31] 16 csrrsi t1, 999, 32 # CHECK: :[[@LINE]]:17: error: immediate must be an integer in the range [0, 31] [all …]
|
D | rvi-pseudos-invalid.s | 4 lla x1, 1234 # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 5 lla x1, %pcrel_hi(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 6 lla x1, %pcrel_lo(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 7 lla x1, %pcrel_hi(foo) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 8 lla x1, %pcrel_lo(foo) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 9 lla x1, %hi(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 10 lla x1, %lo(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 11 lla x1, %hi(foo) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 12 lla x1, %lo(foo) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name 14 la x1, 1234 # CHECK: :[[@LINE]]:8: error: operand must be a bare symbol name [all …]
|
D | rv32c-invalid.s | 24 c.addi x0, x0, 1 # CHECK: :[[@LINE]]:13: error: immediate must be zero 43 c.slli t0, 64 # CHECK: :[[@LINE]]:12: error: immediate must be an integer in the range [1, 31] 44 c.srli a0, 32 # CHECK: :[[@LINE]]:12: error: immediate must be an integer in the range [1, 31] 45 c.srai a0, 0 # CHECK: :[[@LINE]]:12: error: immediate must be an integer in the range [1, 31] 48 c.li t0, 128 # CHECK: :[[@LINE]]:10: error: immediate must be an integer in the range [-32, 31] 49 c.li t0, foo # CHECK: :[[@LINE]]:10: error: immediate must be an integer in the range [-32, 31] 50 c.li t0, %lo(foo) # CHECK: :[[@LINE]]:10: error: immediate must be an integer in the range [-32, 31] 51 c.li t0, %hi(foo) # CHECK: :[[@LINE]]:10: error: immediate must be an integer in the range [-32, 31] 52 c.andi a0, -33 # CHECK: :[[@LINE]]:12: error: immediate must be an integer in the range [-32, 31] 53 c.andi a0, foo # CHECK: :[[@LINE]]:12: error: immediate must be an integer in the range [-32, 31] [all …]
|
D | function-call-invalid.s | 3 call 1234 # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 4 call %pcrel_hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 5 call %pcrel_lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 6 call %pcrel_hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 7 call %pcrel_lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 8 call %hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 9 call %lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 10 call %hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 11 call %lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 12 call foo, bar # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
|
D | rv64i-aliases-invalid.s | 6 li t4, foo # CHECK: :[[@LINE]]:8: error: operand must be a constant 64-bit integer 12 sll x2, x3, 64 # CHECK: :[[@LINE]]:13: error: immediate must be an integer in the range [0, 63] 13 srl x2, x3, 64 # CHECK: :[[@LINE]]:13: error: immediate must be an integer in the range [0, 63] 14 sra x2, x3, 64 # CHECK: :[[@LINE]]:13: error: immediate must be an integer in the range [0, 63] 16 sll x2, x3, -1 # CHECK: :[[@LINE]]:13: error: immediate must be an integer in the range [0, 63] 17 srl x2, x3, -2 # CHECK: :[[@LINE]]:13: error: immediate must be an integer in the range [0, 63] 18 sra x2, x3, -3 # CHECK: :[[@LINE]]:13: error: immediate must be an integer in the range [0, 63] 20 sllw x2, x3, 32 # CHECK: :[[@LINE]]:14: error: immediate must be an integer in the range [0, 31] 21 srlw x2, x3, 32 # CHECK: :[[@LINE]]:14: error: immediate must be an integer in the range [0, 31] 22 sraw x2, x3, 32 # CHECK: :[[@LINE]]:14: error: immediate must be an integer in the range [0, 31] [all …]
|
D | tail-call-invalid.s | 4 tail 1234 # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 5 tail %pcrel_hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 6 tail %pcrel_lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 7 tail %pcrel_hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 8 tail %pcrel_lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 9 tail %hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 10 tail %lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 11 tail %hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name 12 tail %lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
|
/external/llvm-project/clang/test/SemaOpenCL/ |
D | builtins-amdgcn-error-gfx908-param.cl | 23 …0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_32x32x1f32' must be a constant integ… 24 …0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_32x32x1f32' must be a constant integ… 25 …d); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_32x32x1f32' must be a constant integ… 30 …0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_16x16x1f32' must be a constant integ… 31 …0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_16x16x1f32' must be a constant integ… 32 …d); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_16x16x1f32' must be a constant integ… 37 …, 0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_4x4x1f32' must be a constant integ… 38 …, 0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_4x4x1f32' must be a constant integ… 39 …, d); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_4x4x1f32' must be a constant integ… 44 …0); // expected-error{{argument to '__builtin_amdgcn_mfma_f32_32x32x2f32' must be a constant integ… [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
D | rayQuery-committed.Error.rgen.out | 2 ERROR: 0:48: 'committed' : argument must be compile-time constant 3 ERROR: 0:53: 'committed' : argument must be compile-time constant 4 ERROR: 0:54: 'committed' : argument must be compile-time constant 5 ERROR: 0:58: 'committed' : argument must be compile-time constant 6 ERROR: 0:62: 'committed' : argument must be compile-time constant 7 ERROR: 0:66: 'committed' : argument must be compile-time constant 8 ERROR: 0:70: 'committed' : argument must be compile-time constant 9 ERROR: 0:74: 'committed' : argument must be compile-time constant 10 ERROR: 0:78: 'committed' : argument must be compile-time constant 11 ERROR: 0:82: 'committed' : argument must be compile-time constant [all …]
|
D | spv.memoryScopeSemantics_Error.comp.out | 2 ERROR: 0:15: 'atomicStore' : gl_SemanticsAcquire must not be used with (image) atomic store 3 ERROR: 0:16: 'imageAtomicLoad' : gl_SemanticsRelease must not be used with (image) atomic load 4 ERROR: 0:17: 'atomicStore' : gl_SemanticsAcquireRelease must not be used with (image) atomic load/s… 7 ERROR: 0:20: 'memoryBarrier' : Semantics must include exactly one of gl_SemanticsRelease, gl_Semant… 8 ERROR: 0:21: 'memoryBarrier' : Storage class semantics must not be zero 9 ERROR: 0:22: 'memoryBarrier' : Semantics must include exactly one of gl_SemanticsRelease, gl_Semant… 10 ERROR: 0:23: 'atomicAdd' : Semantics must not include multiple of gl_SemanticsRelease, gl_Semantics… 11 ERROR: 0:24: 'atomicCompSwap' : semUnequal must not be gl_SemanticsRelease or gl_SemanticsAcquireRe… 14 ERROR: 0:27: 'memoryBarrier' : gl_SemanticsVolatile must not be used with memoryBarrier or controlB… 15 ERROR: 0:28: 'atomicCompSwap' : semEqual and semUnequal must either both include gl_SemanticsVolati…
|
D | spv.subgroupClusteredNeg.comp.out | 2 ERROR: 0:22: 'cluster size' : argument must be at least 1 3 ERROR: 0:24: 'cluster size' : argument must be a power of 2 4 ERROR: 0:27: 'cluster size' : argument must be a power of 2 5 ERROR: 0:29: 'cluster size' : argument must be at least 1 6 ERROR: 0:31: 'cluster size' : argument must be at least 1 7 ERROR: 0:33: 'cluster size' : argument must be compile-time constant 8 ERROR: 0:36: 'cluster size' : argument must be compile-time constant 9 ERROR: 0:37: 'cluster size' : argument must be compile-time constant
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | rayQuery-committed.Error.rgen.out | 2 ERROR: 0:48: 'committed' : argument must be compile-time constant 3 ERROR: 0:53: 'committed' : argument must be compile-time constant 4 ERROR: 0:54: 'committed' : argument must be compile-time constant 5 ERROR: 0:58: 'committed' : argument must be compile-time constant 6 ERROR: 0:62: 'committed' : argument must be compile-time constant 7 ERROR: 0:66: 'committed' : argument must be compile-time constant 8 ERROR: 0:70: 'committed' : argument must be compile-time constant 9 ERROR: 0:74: 'committed' : argument must be compile-time constant 10 ERROR: 0:78: 'committed' : argument must be compile-time constant 11 ERROR: 0:82: 'committed' : argument must be compile-time constant [all …]
|
D | spv.memoryScopeSemantics_Error.comp.out | 2 ERROR: 0:15: 'atomicStore' : gl_SemanticsAcquire must not be used with (image) atomic store 3 ERROR: 0:16: 'imageAtomicLoad' : gl_SemanticsRelease must not be used with (image) atomic load 4 ERROR: 0:17: 'atomicStore' : gl_SemanticsAcquireRelease must not be used with (image) atomic load/s… 7 ERROR: 0:20: 'memoryBarrier' : Semantics must include exactly one of gl_SemanticsRelease, gl_Semant… 8 ERROR: 0:21: 'memoryBarrier' : Storage class semantics must not be zero 9 ERROR: 0:22: 'memoryBarrier' : Semantics must include exactly one of gl_SemanticsRelease, gl_Semant… 10 ERROR: 0:23: 'atomicAdd' : Semantics must not include multiple of gl_SemanticsRelease, gl_Semantics… 11 ERROR: 0:24: 'atomicCompSwap' : semUnequal must not be gl_SemanticsRelease or gl_SemanticsAcquireRe… 14 ERROR: 0:27: 'memoryBarrier' : gl_SemanticsVolatile must not be used with memoryBarrier or controlB… 15 ERROR: 0:28: 'atomicCompSwap' : semEqual and semUnequal must either both include gl_SemanticsVolati…
|
D | spv.subgroupClusteredNeg.comp.out | 2 ERROR: 0:22: 'cluster size' : argument must be at least 1 3 ERROR: 0:24: 'cluster size' : argument must be a power of 2 4 ERROR: 0:27: 'cluster size' : argument must be a power of 2 5 ERROR: 0:29: 'cluster size' : argument must be at least 1 6 ERROR: 0:31: 'cluster size' : argument must be at least 1 7 ERROR: 0:33: 'cluster size' : argument must be compile-time constant 8 ERROR: 0:36: 'cluster size' : argument must be compile-time constant 9 ERROR: 0:37: 'cluster size' : argument must be compile-time constant
|
/external/llvm/test/MC/ARM/ |
D | neon-vld-vst-align.s | 13 @ CHECK-ERRORS: error: alignment must be 64 or omitted 16 @ CHECK-ERRORS: error: alignment must be 64 or omitted 20 @ CHECK-ERRORS: error: alignment must be 64 or omitted 23 @ CHECK-ERRORS: error: alignment must be 64 or omitted 35 @ CHECK-ERRORS: error: alignment must be 64 or omitted 38 @ CHECK-ERRORS: error: alignment must be 64 or omitted 42 @ CHECK-ERRORS: error: alignment must be 64 or omitted 45 @ CHECK-ERRORS: error: alignment must be 64 or omitted 57 @ CHECK-ERRORS: error: alignment must be 64 or omitted 60 @ CHECK-ERRORS: error: alignment must be 64 or omitted [all …]
|
/external/llvm-project/llvm/test/MC/ARM/ |
D | neon-vld-vst-align.s | 13 @ CHECK-ERRORS: alignment must be 64 or omitted 16 @ CHECK-ERRORS: alignment must be 64 or omitted 20 @ CHECK-ERRORS: alignment must be 64 or omitted 23 @ CHECK-ERRORS: alignment must be 64 or omitted 35 @ CHECK-ERRORS: alignment must be 64 or omitted 38 @ CHECK-ERRORS: alignment must be 64 or omitted 42 @ CHECK-ERRORS: alignment must be 64 or omitted 45 @ CHECK-ERRORS: alignment must be 64 or omitted 57 @ CHECK-ERRORS: alignment must be 64 or omitted 60 @ CHECK-ERRORS: alignment must be 64 or omitted [all …]
|
D | equal-rdhi-rdlo-diagnostics.s | 5 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 7 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 9 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 11 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 13 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 15 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 17 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 19 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 21 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different 23 @ CHECK: [[@LINE-1]]:{{[0-9]+}}: error: unpredictable instruction, RdHi and RdLo must be different [all …]
|
D | unpred-control-flow-in-it-block.s | 8 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 10 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 12 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 16 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 18 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 20 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 24 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 26 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 28 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… 32 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru… [all …]
|
D | invalid-neon-v8.s | 13 @ CHECK: error: operand must be a register in range [d0, d31] 23 @ CHECK: note: operand must be a register in range [d0, d31] 24 @ CHECK: note: operand must be a register in range [q0, q15] 27 @ CHECK: note: operand must be a register in range [d0, d31] 28 @ CHECK: note: operand must be a register in range [q0, q15] 33 @ CHECK: error: operand must be a register in range [q0, q15] 35 @ CHECK: error: operand must be a register in range [q0, q15] 37 @ CHECK: error: operand must be a register in range [q0, q15] 39 @ CHECK: error: operand must be a register in range [q0, q15] 44 @ CHECK: error: operand must be a register in range [q0, q15] [all …]
|
D | diagnostics.s | 163 @ CHECK-ERRORS: operand must be an immediate in the range [0,7] 164 @ CHECK-ERRORS: operand must be an immediate in the range [0,7] 165 @ CHECK-ERRORS-V7: operand must be an immediate in the range [0,7] 166 @ CHECK-ERRORS-V7: operand must be an immediate in the range [0,7] 169 @ CHECK-ERRORS: operand must be an immediate in the range [0,15] 170 @ CHECK-ERRORS-V7: operand must be an immediate in the range [0,15] 181 @ CHECK-ERRORS: error: operand must be an immediate in the range [0,0xffff] or a relocatable expres… 191 @ CHECK-ERRORS: note: operand must be a register in range [r0, r15] 197 @ CHECK-ERRORS: error: operand must be an immediate in the range [0,0xffff] or a relocatable expres… 208 @ CHECK-ERRORS: operand must be an immediate in the range [0,7] [all …]
|
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/ |
D | SPIRVNonUniformOps.td | 58 Result Type must be a vector of four components of integer type scalar, 66 Execution must be Workgroup or Subgroup Scope. 68 Predicate must be a Boolean type. 116 Result Type must be a scalar or vector of floating-point type, integer 119 Execution must be Workgroup or Subgroup Scope. 121 The type of Value must be the same as Result Type. 123 Id must be a scalar of integer type, whose Signedness operand is 0. 125 Before version 1.5, Id must come from a constant instruction. Starting 126 with version 1.5, Id must be dynamically uniform. 186 Result Type must be a Boolean type. [all …]
|
D | SPIRVLogicalOps.td | 52 Result Type must be a scalar or vector of Boolean type. 54 The type of Operand 1 and Operand 2 must be a scalar or vector of 55 floating-point type. They must have the same type, and they must have 86 Result Type must be a scalar or vector of Boolean type. 88 The type of Operand 1 and Operand 2 must be a scalar or vector of 89 floating-point type. They must have the same type, and they must have 120 Result Type must be a scalar or vector of Boolean type. 122 The type of Operand 1 and Operand 2 must be a scalar or vector of 123 floating-point type. They must have the same type, and they must have 154 Result Type must be a scalar or vector of Boolean type. [all …]
|
/external/toolchain-utils/compiler_wrapper/ |
D | sanitizer_flags_test.go | 13 cmd := ctx.must(callCompiler(ctx, ctx.cfg, 19 cmd = ctx.must(callCompiler(ctx, ctx.cfg, 25 cmd = ctx.must(callCompiler(ctx, ctx.cfg, 31 cmd = ctx.must(callCompiler(ctx, ctx.cfg, 42 cmd := ctx.must(callCompiler(ctx, ctx.cfg, 53 cmd := ctx.must(callCompiler(ctx, ctx.cfg, 65 cmd := ctx.must(callCompiler(ctx, ctx.cfg, 71 cmd = ctx.must(callCompiler(ctx, ctx.cfg, 77 cmd = ctx.must(callCompiler(ctx, ctx.cfg, 83 cmd = ctx.must(callCompiler(ctx, ctx.cfg, [all …]
|
/external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
D | README.md | 105 the model to the XNNPACK delegate. The users must destroy the delegate with 150 * Inputs and outputs must be in 32-bit floating-point format. 154 * Inputs and outputs must be in 32-bit floating-point format. 161 * Inputs and outputs must be in 32-bit floating-point format. 168 * Inputs and outputs must be in 32-bit floating-point format. 172 * Inputs and outputs must be in 32-bit floating-point format. 174 * Both filter and bias must be static (use `kTfLiteMmapRo` allocation type). 180 * Inputs and outputs must be in 32-bit floating-point format. 181 * Block size must be greater than 1. 185 * Inputs and outputs must be in 32-bit floating-point format. [all …]
|