Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for x_y_prod (0.29 sec)

  1. tensorflow/compiler/aot/tests/test_graph_tfmatmulandadd.config.pbtxt

        dim { size: 2 }
      }
      name: "x"
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
      name: "y"
    }
    fetch {
      id { node_name: "x_y_prod" }
      name: "x_y_prod"
    }
    fetch {
      id { node_name: "x_y_sum" }
      name: "x_y_sum"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 373 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/test_graph_tfmatmul.config.pbtxt

      shape {
        dim { size: 2 }
        dim { size: 3 }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 3 }
        dim { size: 2 }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 272 bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/bench_graph_tfmatmul.template.pbtxt

      shape {
        dim { size: <M> }
        dim { size: <K> }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: <K> }
        dim { size: <N> }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 15:53:56 UTC 2023
    - 280 bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/make_test_graphs.py

      y = array_ops.placeholder(dtypes.float32, name='y_hold')
      math_ops.matmul(x, y, name='x_y_prod')
    
    
    def tfmatmulandadd(_):
      # This tests multiple outputs.
      x = array_ops.placeholder(dtypes.float32, name='x_hold')
      y = array_ops.placeholder(dtypes.float32, name='y_hold')
      math_ops.matmul(x, y, name='x_y_prod')
      math_ops.add(x, y, name='x_y_sum')
    
    
    def tffunction(_):
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_EQ(muladd.LookupArgIndex("x_hold"), -1);
      EXPECT_EQ(muladd.LookupArgIndex("y_hold"), -1);
      EXPECT_EQ(muladd.LookupArgIndex("x_y_prod"), -1);
      EXPECT_EQ(muladd.LookupArgIndex("x_y_sum"), -1);
    
      EXPECT_EQ(muladd.LookupResultIndex("x_y_prod"), 0);
      EXPECT_EQ(muladd.LookupResultIndex("x_y_sum"), 1);
      EXPECT_EQ(muladd.LookupResultIndex(""), -1);
      EXPECT_EQ(muladd.LookupResultIndex("x"), -1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top