Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tfmatmulandadd (0.1 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

    
    def tfmatmul(_):
      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')
    
    
    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')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top