diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000000..a59308e2e7ef3 Binary files /dev/null and b/favicon.ico differ diff --git a/netfree-root.cer b/netfree-root.cer new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/onnxruntime/core/providers/cpu/cpu_execution_provider.cc b/onnxruntime/core/providers/cpu/cpu_execution_provider.cc index f6484ab60f5da..9f8e287c1e482 100644 --- a/onnxruntime/core/providers/cpu/cpu_execution_provider.cc +++ b/onnxruntime/core/providers/cpu/cpu_execution_provider.cc @@ -196,6 +196,8 @@ class ONNX_OPERATOR_VERSIONED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDoma class ONNX_OPERATOR_VERSIONED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 6, 21, InstanceNormalization); class ONNX_OPERATOR_VERSIONED_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 1, 21, float, LpNormalization); class ONNX_OPERATOR_VERSIONED_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 1, 21, double, LpNormalization); +class ONNX_OPERATOR_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, float, LpNormalization); +class ONNX_OPERATOR_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, double, LpNormalization); class ONNX_OPERATOR_VERSIONED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 1, 12, LRN); class ONNX_OPERATOR_VERSIONED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 7, 9, AveragePool); class ONNX_OPERATOR_VERSIONED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 1, 7, MaxPool); @@ -1325,8 +1327,6 @@ class ONNX_OPERATOR_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, class ONNX_OPERATOR_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, Softsign); class ONNX_OPERATOR_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, ThresholdedRelu); class ONNX_OPERATOR_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, AveragePool); -class ONNX_OPERATOR_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, float, LpNormalization); -class ONNX_OPERATOR_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, double, LpNormalization); #ifdef MLAS_F16VEC_INTRINSICS_SUPPORTED class ONNX_OPERATOR_TYPED_KERNEL_CLASS_NAME(kCpuExecutionProvider, kOnnxDomain, 22, MLFloat16, Conv); @@ -1731,9 +1731,13 @@ Status RegisterOnnxOperatorKernels(KernelRegistry& kernel_registry) { BuildKernelCreateInfo, BuildKernelCreateInfo, + LpNormalization)>, BuildKernelCreateInfo, + LpNormalization)>, + BuildKernelCreateInfo, + BuildKernelCreateInfo, BuildKernelCreateInfo, BuildKernelCreateInfo, diff --git a/onnxruntime/core/providers/cpu/nn/lp_norm.cc b/onnxruntime/core/providers/cpu/nn/lp_norm.cc index 03f85e8ea5705..95ed3f3e80500 100644 --- a/onnxruntime/core/providers/cpu/nn/lp_norm.cc +++ b/onnxruntime/core/providers/cpu/nn/lp_norm.cc @@ -7,22 +7,22 @@ #include "core/providers/common.h" namespace onnxruntime { -#define REGISTER_LPNORMALISATION_VERSIONED_KERNEL(type, sinceVersion, endVersion) \ +#define REGISTER_LPNORMALISATION_KERNEL(type, sinceVersion, endVersion) \ ONNX_CPU_OPERATOR_VERSIONED_TYPED_KERNEL( \ LpNormalization, sinceVersion, endVersion, type, \ KernelDefBuilder().TypeConstraint("T", DataTypeImpl::GetTensorType()), \ LpNorm); -#define REGISTER_LPNORMALISATION_KERNEL(type, sinceVersion) \ +#define REGISTER_LPNORMALISATION_KERNEL_NEW(type, sinceVersion) \ ONNX_CPU_OPERATOR_TYPED_KERNEL( \ LpNormalization, sinceVersion, type, \ KernelDefBuilder().TypeConstraint("T", DataTypeImpl::GetTensorType()), \ LpNorm); -REGISTER_LPNORMALISATION_VERSIONED_KERNEL(float, 1, 21) -REGISTER_LPNORMALISATION_VERSIONED_KERNEL(double, 1, 21) -REGISTER_LPNORMALISATION_KERNEL(float, 22) -REGISTER_LPNORMALISATION_KERNEL(double, 22) +REGISTER_LPNORMALISATION_KERNEL(float, 1, 21) +REGISTER_LPNORMALISATION_KERNEL(double, 1, 21) +REGISTER_LPNORMALISATION_KERNEL_NEW(float, 22) +REGISTER_LPNORMALISATION_KERNEL_NEW(double, 22) using InnerStride = Eigen::InnerStride; diff --git a/provider_test.xml b/provider_test.xml new file mode 100644 index 0000000000000..41b1c6af0defb --- /dev/null +++ b/provider_test.xml @@ -0,0 +1,6927 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e866f) [0x559c47c7f66f] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8886) [0x559c47c7f886] +./build/Linux/Debug/onnxruntime_provider_test(+0x3b7096) [0x559c47c4e096] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + + + + + + + + + + + + + + + + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ee7c1) [0x559c47c857c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3c14f1) [0x559c47c584f1] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::Attention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47c5da8f: onnxruntime::test::ContribOpAttentionTest_AttentionPastState_dynamic_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47c5da8f: onnxruntime::test::ContribOpAttentionTest_AttentionPastState_dynamic_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::Attention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 234 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47c5f5c3: onnxruntime::test::RunModelWithRandomInput() + 0x559c47c5fcf5: onnxruntime::test::ContribOpAttentionTest_Attention_Mask2D_Fp32_B2_S32_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 234 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47c5f5c3: onnxruntime::test::RunModelWithRandomInput() + 0x559c47c5fcf5: onnxruntime::test::ContribOpAttentionTest_Attention_Mask2D_Fp32_B2_S32_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::Attention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 234 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47c5f5c3: onnxruntime::test::RunModelWithRandomInput() + 0x559c47c5ff3a: onnxruntime::test::ContribOpAttentionTest_Attention_Mask1D_Fp32_B2_S64_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 234 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47c5f5c3: onnxruntime::test::RunModelWithRandomInput() + 0x559c47c5ff3a: onnxruntime::test::ContribOpAttentionTest_Attention_Mask1D_Fp32_B2_S64_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c47c92a08: onnxruntime::test::BeamSearchTest_DummyT5_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c47c92e76: onnxruntime::test::BeamSearchTest_DummyT5WithOuterScopeInitializers_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c47c932e4: onnxruntime::test::BeamSearchTest_DummyT5WithSequenceInputIds_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c47c93752: onnxruntime::test::BeamSearchTest_DummyT5PointerGenerator_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(::LayerNormalization:17) has output size 0 not in range [min=1, max=3]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47d72496: onnxruntime::test::LayerNormTest_BERTLayerNorm_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47d72496: onnxruntime::test::LayerNormTest_BERTLayerNorm_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(::LayerNormalization:17) has output size 0 not in range [min=1, max=3]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47d72cfd: onnxruntime::test::LayerNormTest_BERTLayerNorm_NoBias_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47d72cfd: onnxruntime::test::LayerNormTest_BERTLayerNorm_NoBias_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8a38) [0x559c47c7fa38] +./build/Linux/Debug/onnxruntime_provider_test(+0x587238) [0x559c47e1e238] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8ffd) [0x559c47c7fffd] +./build/Linux/Debug/onnxruntime_provider_test(+0x587333) [0x559c47e1e333] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8ffd) [0x559c47c7fffd] +./build/Linux/Debug/onnxruntime_provider_test(+0x58744f) [0x559c47e1e44f] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e9511) [0x559c47c80511] +./build/Linux/Debug/onnxruntime_provider_test(+0x587566) [0x559c47e1e566] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e99bf) [0x559c47c809bf] +./build/Linux/Debug/onnxruntime_provider_test(+0x587678) [0x559c47e1e678] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e9da2) [0x559c47c80da2] +./build/Linux/Debug/onnxruntime_provider_test(+0x58774a) [0x559c47e1e74a] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ea180) [0x559c47c81180] +./build/Linux/Debug/onnxruntime_provider_test(+0x58781c) [0x559c47e1e81c] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ea5e8) [0x559c47c815e8] +./build/Linux/Debug/onnxruntime_provider_test(+0x587912) [0x559c47e1e912] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eaa50) [0x559c47c81a50] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ead31) [0x559c47c81d31] +./build/Linux/Debug/onnxruntime_provider_test(+0x587a08) [0x559c47e1ea08] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eaf46) [0x559c47c81f46] +./build/Linux/Debug/onnxruntime_provider_test(+0x587ada) [0x559c47e1eada] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eb26f) [0x559c47c8226f] +./build/Linux/Debug/onnxruntime_provider_test(+0x587bac) [0x559c47e1ebac] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eb8a8) [0x559c47c828a8] +./build/Linux/Debug/onnxruntime_provider_test(+0x587c7e) [0x559c47e1ec7e] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ebd04) [0x559c47c82d04] +./build/Linux/Debug/onnxruntime_provider_test(+0x587d50) [0x559c47e1ed50] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ec89a) [0x559c47c8389a] +./build/Linux/Debug/onnxruntime_provider_test(+0x587e84) [0x559c47e1ee84] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3edb6e) [0x559c47c84b6e] +./build/Linux/Debug/onnxruntime_provider_test(+0x58806e) [0x559c47e1f06e] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ee231) [0x559c47c85231] +./build/Linux/Debug/onnxruntime_provider_test(+0x58815a) [0x559c47e1f15a] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e9da2) [0x559c47c80da2] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b67b6) [0x559c47e4d7b6] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e9da2) [0x559c47c80da2] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b6af8) [0x559c47e4daf8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e9da2) [0x559c47c80da2] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b6e3a) [0x559c47e4de3a] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e9da2) [0x559c47c80da2] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b717c) [0x559c47e4e17c] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eb8a8) [0x559c47c828a8] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b74c6) [0x559c47e4e4c6] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eb8a8) [0x559c47c828a8] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b77b6) [0x559c47e4e7b6] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eeb52) [0x559c47c85b52] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b7b2c) [0x559c47e4eb2c] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eeb52) [0x559c47c85b52] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b7d1a) [0x559c47e4ed1a] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eeb52) [0x559c47c85b52] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b7f08) [0x559c47e4ef08] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3eefe0) [0x559c47c85fe0] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b80f6) [0x559c47e4f0f6] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ef585) [0x559c47c86585] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b82b6) [0x559c47e4f2b6] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + , std::vector >&) Cannot open file:testdata/attention/attention_test_data.txt +Stacktrace: +./build/Linux/Debug/onnxruntime_provider_test(+0x3e82de) [0x559c47c7f2de] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f12c1) [0x559c47c882c1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f03f3) [0x559c47c873f3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efab1) [0x559c47c86ab1] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f0415) [0x559c47c87415] +./build/Linux/Debug/onnxruntime_provider_test(+0x3f042a) [0x559c47c8742a] +/lib/x86_64-linux-gnu/libc.so.6(+0xa1ed3) [0x7cd48eea1ed3] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8097) [0x559c47c7f097] +./build/Linux/Debug/onnxruntime_provider_test(+0x3efb09) [0x559c47c86b09] +./build/Linux/Debug/onnxruntime_provider_test(+0x3e8472) [0x559c47c7f472] +./build/Linux/Debug/onnxruntime_provider_test(+0x3ef585) [0x559c47c86585] +./build/Linux/Debug/onnxruntime_provider_test(+0x5b8476) [0x559c47e4f476] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3dfef) [0x559c4a6d4fef] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e367e5) [0x559c4a6cd7e5] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e18ae8) [0x559c4a6afae8] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e195c0) [0x559c4a6b05c0] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e1a033) [0x559c4a6b1033] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e2bef2) [0x559c4a6c2ef2] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e3f184) [0x559c4a6d6184] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e379a9) [0x559c4a6ce9a9] +./build/Linux/Debug/onnxruntime_provider_test(+0x2e29a46) [0x559c4a6c0a46] +./build/Linux/Debug/onnxruntime_provider_test(+0x14295a2) [0x559c48cc05a2] +./build/Linux/Debug/onnxruntime_provider_test(+0x142aa4c) [0x559c48cc1a4c] +/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca) [0x7cd48ee2a1ca] +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b) [0x7cd48ee2a28b] +./build/Linux/Debug/onnxruntime_provider_test(+0x36c655) [0x559c47c03655] +" thrown in the test body. +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c47edeb90: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edeb90: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edeb90: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () + 0x559c47edec04: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edec04: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edec04: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () + 0x559c47edec78: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edec78: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edec78: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () + 0x559c47edecec: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edecec: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee649f: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edecec: onnxruntime::test::QAttentionTest_QAttentionPastState_u8u8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c47edee9e: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edee9e: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edee9e: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () + 0x559c47edef12: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edef12: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edef12: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () + 0x559c47edef86: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edef86: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edef86: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () + 0x559c47edeffa: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + () , Error Node(node1) with schema(com.microsoft::QAttention:1) has output size 0 not in range [min=1, max=2]. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a63ac14: onnxruntime::test::OpTester::CreateModelToTest() + 0x559c4a5f21a4: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edeffa: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Google Test trace: +/home/chaya/onnx/onnxruntime/onnxruntime/test/common/random_generator.h:52: ORT test random seed: 2715322567 +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c47ee7512: onnxruntime::test::TestQuantizedAttentionPastState<>() + 0x559c47edeffa: onnxruntime::test::QAttentionTest_QAttentionPastState_u8s8_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c4821e392: onnxruntime::test::SoftmaxOperator_GH15949_regression_test_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + ExpectResult::kExpectFailure + Which is: 4-byte object <01-00 00-00> +Failed to create model to test. +Stack trace: + 0x559c4a5f227f: onnxruntime::test::BaseTester::RunWithConfig() + 0x559c4a5f1b51: onnxruntime::test::BaseTester::Run() + 0x559c4a5f19d8: onnxruntime::test::BaseTester::Run() + 0x559c483ada10: onnxruntime::test::FlattenOpModelTest_Flatten_broadcast_Test::TestBody() + 0x559c4a6d4fef: testing::internal::HandleSehExceptionsInMethodIfSupported<>() + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + () + 0x559c4a6cd7e5: testing::internal::HandleExceptionsInMethodIfSupported<>() + 0x559c4a6afae8: testing::Test::Run() + 0x559c4a6b05c0: testing::TestInfo::Run() +... Google Test internal frames ... +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +