Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LRNGrad (0.27 sec)

  1. tensorflow/compiler/jit/flags.cc

              " REDUCEWINDOW: TF operations like MaxPool/AvgPool that get "
              "converted to ReduceWindow in XLA."
              " REDUCEWINDOWPW: Operation that get converted to ReduceWindow + PW "
              "(LRN, LRNGrad)."
              " BN: TF FusedBatchNorm* operations."
              " FUSIBLE: All TF operations that XLA can fuse (All the above). "
              "You can also put any TF operation name, e.g. 'FUSIBLE,MatMul'."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/nn_grad.cc

    Status LRNGradHelper(const Scope& scope, const Operation& op,
                         const std::vector<Output>& grad_inputs,
                         std::vector<Output>* grad_outputs) {
      auto dx = internal::LRNGrad(scope, grad_inputs[0], op.input(0), op.output(0));
      grad_outputs->push_back(dx);
      return scope.status();
    }
    REGISTER_GRADIENT_OP("LRN", LRNGradHelper);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K 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. RELEASE.md

    *   Fixes a `CHECK` fail in `ParameterizedTruncatedNormal` ([CVE-2022-35984](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35984))
    *   Fixes a `CHECK` fail in `LRNGrad` ([CVE-2022-35985](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35985))
    *   Fixes a segfault in `RaggedBincount` ([CVE-2022-35986](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35986))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        TensorOf<[TF_Bfloat16, TF_Float16, TF_Float32]>:$output
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_LRNGradOp : TF_Op<"LRNGrad", [Pure]> {
      let summary = "Gradients for Local Response Normalization.";
    
      let arguments = (ins
    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