Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
wux_labs
Tensorflow
提交
3982264c
T
Tensorflow
项目概览
wux_labs
/
Tensorflow
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Tensorflow
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
3982264c
编写于
11月 14, 2022
作者:
M
Mihai Maruseac
提交者:
GitHub
11月 14, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #58573 from tensorflow/r2.10-
f856d02e
r2.10 cherry-pick:
f856d02e
"Fix missing sparse matrix crash."
上级
f425d38d
391ec802
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
0 deletion
+17
-0
tensorflow/core/kernels/sparse/sparse_matrix.h
tensorflow/core/kernels/sparse/sparse_matrix.h
+7
-0
tensorflow/python/kernel_tests/linalg/sparse/csr_sparse_matrix_ops_test.py
.../kernel_tests/linalg/sparse/csr_sparse_matrix_ops_test.py
+10
-0
未找到文件。
tensorflow/core/kernels/sparse/sparse_matrix.h
浏览文件 @
3982264c
...
...
@@ -25,10 +25,12 @@ limitations under the License.
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/tensor.h"
#include "tensorflow/core/framework/tensor_shape.h"
#include "tensorflow/core/framework/tensor_types.h"
#include "tensorflow/core/framework/variant.h"
#include "tensorflow/core/framework/variant_encode_decode.h"
#include "tensorflow/core/framework/variant_op_registry.h"
#include "tensorflow/core/platform/errors.h"
namespace
tensorflow
{
...
...
@@ -633,6 +635,11 @@ template <typename T>
Status
ExtractVariantFromInput
(
OpKernelContext
*
ctx
,
int
index
,
const
T
**
value
)
{
const
Tensor
&
input_t
=
ctx
->
input
(
index
);
if
(
!
TensorShapeUtils
::
IsScalar
(
input_t
.
shape
()))
{
return
errors
::
InvalidArgument
(
"Invalid input matrix: Shape must be rank 0 but is rank "
,
input_t
.
dims
());
}
const
Variant
&
input_variant
=
input_t
.
scalar
<
Variant
>
()();
*
value
=
input_variant
.
get
<
T
>
();
if
(
*
value
==
nullptr
)
{
...
...
tensorflow/python/kernel_tests/linalg/sparse/csr_sparse_matrix_ops_test.py
浏览文件 @
3982264c
...
...
@@ -1313,6 +1313,16 @@ class CSRSparseMatrixOpsTest(test.TestCase):
self
.
assertLess
(
cholesky_with_amd_nnz_value
,
cholesky_without_ordering_nnz_value
)
@
test_util
.
run_in_graph_and_eager_modes
def
testNoMatrixNoCrash
(
self
):
# Round-about way of creating an empty variant tensor that works in both
# graph and eager modes.
no_matrix
=
array_ops
.
reshape
(
dense_to_csr_sparse_matrix
([[
0.0
]]),
[
1
])[
0
:
0
]
with
self
.
assertRaisesRegex
(
(
ValueError
,
errors
.
InvalidArgumentError
),
"(Invalid input matrix)|(Shape must be rank 0)"
):
sparse_csr_matrix_ops
.
sparse_matrix_nnz
(
no_matrix
)
class
CSRSparseMatrixOpsBenchmark
(
test
.
Benchmark
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录