Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FusedBatchNormV2 (0.36 sec)

  1. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "bn_conv1_1/FusedBatchNormV2"
      op: "FusedBatchNormV2"
      input: "conv1_1/Conv2D"
      input: "bn_conv1_1/ReadVariableOp"
      input: "bn_conv1_1/ReadVariableOp_1"
      input: "bn5a_branch1_1/Const_1"
      input: "bn5a_branch1_1/Const_1"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/keras_imagenet_main.golden_summary

     AddN 71
     ArgMax 1
     AssignAddVariableOp 1
     BiasAdd 1
     BiasAddGrad 1
     Cast 115
     Const 407
     Conv2D 53
     Conv2DBackpropFilter 53
     Conv2DBackpropInput 52
     Equal 1
     FusedBatchNormGradV2 53
     FusedBatchNormV2 53
     MatMul 3
     MaxPool 1
     MaxPoolGrad 1
     Mean 1
     Mul 218
     Pad 2
     ReadVariableOp 538
     Relu 49
     ReluGrad 49
     Reshape 2
     ResourceApplyKerasMomentum 161
     Slice 1
     Softmax 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 874 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //===----------------------------------------------------------------------===//
    // BatchNorm op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // fusedBatchNormV2 is almost identical to fusedBatchNormV3 (and uses the same
    // code), so only do a couple of basic checks.
    
    // CHECK-LABEL: fusedBatchNormV2_noTraining
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                /*broadcast_dimensions=*/DenseI64ArrayAttr());
          }
    
          if (std::is_same<FusedBatchNormOpT, TF::FusedBatchNormV2Op>::value) {
            // FusedBatchNormV2 expects 4 outputs.
            // Outputs 3 and 4 are currently marked as "reserved spaces 1 and 2".
            // They are used to pass the per-batch mean and variance to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        StringRef GetOptimalLayout(const RuntimeDevices& devices);
        LogicalResult UpdateDataFormat(StringRef data_format);
      }];
    }
    
    def TF_FusedBatchNormV2Op : TF_Op<"FusedBatchNormV2", [Pure, TF_FoldOperandsTransposeInterface, TF_LayoutSensitiveInterface]> {
      let summary = "Batch normalization.";
    
      let description = [{
    Note that the size of 4D Tensors are defined by either "NHWC" or "NCHW".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top