Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for arg_data (0.26 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    // CHECK:  %[[RSQRT:.*]] = "tf.Rsqrt"(%[[VARIANCE]])
    // CHECK:  %[[MUL1:.*]] = "tf.Mul"(%[[ARG_T:.*]], %[[RSQRT]])
    // CHECK:  %[[MUL2:.*]] = "tf.Mul"(%[[ARG_M:.*]], %[[RSQRT]])
    // CHECK:  %[[SUB:.*]] = "tf.Sub"(%[[ARG_BETA:.*]], %[[MUL2]])
    // CHECK:  %[[RESULT:.*]] = "tf.Add"(%[[MUL1]], %[[SUB]])
    // CHECK:  return %[[RESULT]]
    }
    
    func.func @batchNormWithGlobalNormalizationWithScaleAfterNormalization(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

        CompareTensors(out0, expected_out0);
        CompareTensors(out1, expected_out1);
      }
    
      void CompareTensors(TF_Tensor* a, TF_Tensor* b) {
        float* a_data = static_cast<float*>(TF_TensorData(a));
        float* b_data = static_cast<float*>(TF_TensorData(b));
        EXPECT_EQ(*a_data, *b_data);
      }
    
      void AddGradients(bool grad_inputs_provided, const char* prefix,
                        TF_Output* inputs, int ninputs, TF_Output* outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top