Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Clojure: Support MKLDNN subgraph backend in tests #16117

Merged
merged 1 commit into from
Sep 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,8 @@
(-> (executor/forward exec-test) (executor/outputs) (first))))))

(deftest test-maximum
(let [data1 (sym/variable "data")
data2 (sym/variable "data")
(let [data1 (sym/variable "data1")
data2 (sym/variable "data2")
shape-vec [3 4]
data-tmp1 (random/uniform 0 100 shape-vec)
data-tmp2 (random/uniform 0 100 shape-vec)
Expand All @@ -424,8 +424,8 @@
out))))

(deftest test-minimun
(let [data1 (sym/variable "data")
data2 (sym/variable "data")
(let [data1 (sym/variable "data1")
data2 (sym/variable "data2")
shape-vec [3 4]
data-tmp1 (random/uniform 0 100 shape-vec)
data-tmp2 (random/uniform 0 100 shape-vec)
Expand Down