Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BatchNormWithGlobalNormalization (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-version-info.pbtxt

                size: 2
              }
            }
            tensor_content: "\364\254\206>\034\266\037?"
          }
        }
      }
    }
    # BatchNormWithGlobalNormalization op is invalid in version 9.
    node {
      name: "BatchNormWithGlobalNormalization"
      op: "BatchNormWithGlobalNormalization"
      input: "x"
      input: "m"
      input: "v"
      input: "beta"
      input: "gamma"
      device: "/device:CPU:0"
      attr {
        key: "T"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    def ConvertTfConst : Pat<(TF_ConstOp:$res DenseElementsAttr:$value), (Arith_ConstantOp $value),
              [(AnyStaticShapeTensor $res)]>;
    
    // Convert the legacy BatchNormWithGlobalNormalization to other ops.
    def ConvertBatchNormWithGlobalNormalization_1 : Pat<
      (TF_BatchNormWithGlobalNormalizationOp
        $t, $m, $v, $beta, $gamma, F32Attr:$variance_epsilon, ConstBoolAttrFalse:$scale_after_normalization),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    // CHECK:  "tf.FusedBatchNormV3"(%[[BATCHNORM1_b]], %[[ARG1]], %[[ARG2]], %[[ARG3]], %[[ARG4]])
    }
    
    
    func.func @batchNormWithGlobalNormalization(
        %t:tensor<1x10x10x3xf32>, %m:tensor<3xf32>, %v:tensor<3xf32>, %beta:tensor<3xf32>, %gamma:tensor<3xf32>) -> (tensor<1x10x10x3xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    // Following ops are manually defined as the ops are using inputs with name `t`
    // that will lead to conflict with getter for attribute `T` as both becomes
    // getT().
    def TF_BatchNormWithGlobalNormalizationOp : TF_Op<"BatchNormWithGlobalNormalization", [Pure]> {
      let summary = "Batch normalization.";
    
      let description = [{
    This op is deprecated. Prefer `tf.nn.batch_normalization`.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top