mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-10 13:09:43 +01:00
Add StatelessCase, TPUCompile to blacklist.
Needed to support Tensorflow 2.4. Also, add AttrFunc to unbreak build.
This commit is contained in:
parent
6b19e54722
commit
29b6729d68
3 changed files with 6 additions and 1 deletions
|
@ -128,10 +128,12 @@ blackList =
|
|||
, "ScanDataset"
|
||||
, "SnapshotDatasetV2"
|
||||
, "StatefulPartitionedCall"
|
||||
, "StatelessCase"
|
||||
, "StatelessIf"
|
||||
, "StatelessWhile"
|
||||
, "SymbolicGradient"
|
||||
, "TakeWhileDataset"
|
||||
, "TPUCompile"
|
||||
, "TPUPartitionedCall"
|
||||
, "TPUReplicate"
|
||||
, "While"
|
||||
|
|
|
@ -321,6 +321,7 @@ typeSig pre pOp = constraints
|
|||
AttrType -> "DataType"
|
||||
AttrShape -> "Shape"
|
||||
AttrTensor -> "TensorProto"
|
||||
AttrFunc -> error "AttrFunc not supported"
|
||||
|
||||
tensorArgAndComment t = tensorArg t <+> hang 0 ("-- ^" <+> argComment t)
|
||||
outputs = case parsedOutputs pOp of
|
||||
|
|
|
@ -101,7 +101,7 @@ data AttrType = AttrSingle AttrBaseType
|
|||
deriving Eq
|
||||
|
||||
data AttrBaseType = AttrBytes | AttrInt64 | AttrFloat | AttrBool
|
||||
| AttrType | AttrShape | AttrTensor
|
||||
| AttrType | AttrShape | AttrTensor | AttrFunc
|
||||
deriving Eq
|
||||
|
||||
data TypeParam = TypeParam
|
||||
|
@ -334,6 +334,7 @@ parseAttrType o = \case
|
|||
"type" -> AttrSingle AttrType
|
||||
"shape" -> AttrSingle AttrShape
|
||||
"tensor" -> AttrSingle AttrTensor
|
||||
"func" -> AttrSingle AttrFunc
|
||||
"list(string)" -> AttrList AttrBytes
|
||||
"list(int)" -> AttrList AttrInt64
|
||||
"list(float)" -> AttrList AttrFloat
|
||||
|
@ -341,5 +342,6 @@ parseAttrType o = \case
|
|||
"list(type)" -> AttrList AttrType
|
||||
"list(shape)" -> AttrList AttrShape
|
||||
"list(tensor)" -> AttrList AttrTensor
|
||||
"list(func)" -> AttrList AttrFunc
|
||||
t -> error $ "parseAttrType: unrecognized type " ++ show t
|
||||
++ " for op " ++ show (o ^. name)
|
||||
|
|
Loading…
Reference in a new issue