1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-02 11:03:34 +02:00

TensorFlow 2 support: Blacklist more ops to make it build.

This commit is contained in:
Gleb Popov 2019-05-14 14:04:09 +04:00
parent 09aff330f5
commit b2e960246b

View File

@ -90,7 +90,18 @@ fudgePackageDesc lbi p = p
blackList =
[ -- Requires the "func" type:
"FilterDataset"
"BatchFunction"
, "Case"
, "ChooseFastestBranchDataset"
, "ExperimentalGroupByReducerDataset"
, "ExperimentalGroupByWindowDataset"
, "ExperimentalMapAndBatchDataset"
, "ExperimentalMapDataset"
, "ExperimentalNumaMapAndBatchDataset"
, "ExperimentalParallelInterleaveDataset"
, "ExperimentalScanDataset"
, "ExperimentalTakeWhileDataset"
, "FilterDataset"
, "FlatMapDataset"
, "For"
, "GeneratorDataset"
@ -101,22 +112,32 @@ blackList =
, "MapAndBatchDataset"
, "MapAndBatchDatasetV2"
, "MapDataset"
, "MapDataset"
, "MapDefun"
, "OneShotIterator"
, "ParallelInterleaveDataset"
, "ParallelInterleaveDatasetV2"
, "ParallelMapDataset"
, "ParseSequenceExample"
, "PartitionedCall"
, "RemoteCall"
, "ReduceDataset"
, "ScanDataset"
, "StatefulPartitionedCall"
, "StatelessIf"
, "StatelessWhile"
, "SymbolicGradient"
, "TPUPartitionedCall"
, "TPUReplicate"
, "While"
, "XlaIf"
, "XlaLaunch"
, "XlaReduce"
, "XlaReduceWindow"
, "XlaSelectAndScatter"
, "XlaWhile"
, "_If"
, "_While"
, "_XlaCompile"
]
autogenModulesDir :: LocalBuildInfo -> FilePath