2016-10-24 21:26:42 +02:00
|
|
|
-- Copyright 2016 TensorFlow authors.
|
|
|
|
--
|
|
|
|
-- Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
-- you may not use this file except in compliance with the License.
|
|
|
|
-- You may obtain a copy of the License at
|
|
|
|
--
|
|
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
--
|
|
|
|
-- Unless required by applicable law or agreed to in writing, software
|
|
|
|
-- distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
-- See the License for the specific language governing permissions and
|
|
|
|
-- limitations under the License.
|
|
|
|
|
|
|
|
{-# LANGUAGE OverloadedLists #-}
|
|
|
|
{-# LANGUAGE RankNTypes #-}
|
|
|
|
|
|
|
|
module Main where
|
|
|
|
|
|
|
|
import Control.Monad.IO.Class (liftIO)
|
|
|
|
import Data.Int (Int32)
|
2017-05-11 00:26:03 +02:00
|
|
|
import Test.Framework (defaultMain, Test)
|
2016-10-24 21:26:42 +02:00
|
|
|
import Test.Framework.Providers.HUnit (testCase)
|
|
|
|
import Test.HUnit ((@=?))
|
|
|
|
import qualified Data.Vector as V
|
2016-11-09 05:57:22 +01:00
|
|
|
import qualified TensorFlow.GenOps.Core as CoreOps
|
2016-10-24 21:26:42 +02:00
|
|
|
|
|
|
|
import TensorFlow.Ops
|
|
|
|
import TensorFlow.Session
|
|
|
|
|
|
|
|
-- | Test fetching multiple outputs from an op.
|
2016-11-18 19:42:02 +01:00
|
|
|
testMultipleOutputs :: Test
|
2016-10-24 21:26:42 +02:00
|
|
|
testMultipleOutputs = testCase "testMultipleOutputs" $
|
|
|
|
runSession $ do
|
2016-11-09 05:57:22 +01:00
|
|
|
(values, indices) <-
|
|
|
|
run $ CoreOps.topKV2 (constant [1, 4] [10, 40, 20, 30]) 2
|
2016-10-24 21:26:42 +02:00
|
|
|
liftIO $ [40, 30] @=? V.toList (values :: V.Vector Float)
|
|
|
|
liftIO $ [1, 3] @=? V.toList (indices :: V.Vector Int32)
|
|
|
|
|
|
|
|
-- | Test op with variable number of inputs.
|
2016-11-18 19:42:02 +01:00
|
|
|
testVarargs :: Test
|
2016-10-24 21:26:42 +02:00
|
|
|
testVarargs = testCase "testVarargs" $
|
|
|
|
runSession $ do
|
|
|
|
xs <- run $ pack $ map scalar [1..8]
|
|
|
|
liftIO $ [1..8] @=? V.toList (xs :: V.Vector Float)
|
|
|
|
|
|
|
|
main :: IO ()
|
2017-05-11 00:26:03 +02:00
|
|
|
main = defaultMain [ testMultipleOutputs
|
|
|
|
, testVarargs
|
|
|
|
]
|