!21844 [EmbeddingLookup] Add a check for the case of scalar indices

Merge pull request !21844 from Xiaoda/83-add-a-check-for-embeddinglookup-scalar-indices-r.14
This commit is contained in:
i-robot 2021-08-16 10:57:09 +00:00 committed by Gitee
commit c1a90b0870
1 changed files with 3 additions and 0 deletions

View File

@ -5721,6 +5721,9 @@ class EmbeddingLookup(PrimitiveWithCheck):
validator.check_tensor_dtype_valid("indices", indices['dtype'], mstype.int_type, self.name)
validator.check_subclass("offset", offset['dtype'], mstype.int_, self.name)
params_shp = params['shape']
indices_shp = indices['shape']
if not indices_shp:
raise ValueError("'indices' should NOT be a scalar.")
if len(params_shp) > 2:
raise ValueError("The dimension of 'params' in EmbeddingLookup must <= 2, but got %d." % len(params_shp))