Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

    // SpaceToBatch and BatchToSpace ops before and after it:
    //
    //     SpaceToBatchND -> Conv2D -> BatchToSpaceND
    //
    // This method was common before Conv2D fully supported dilated convolution in
    // TensorFlow. This transformation detects this "emulation", and replaces it
    // with a true dilated convolution, eliminating the SpaceToBatch and
    // BatchtoSpace ops.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/array_grad.cc

      grad_outputs->push_back(
          BatchToSpace(scope, grad_inputs[0], op.input(1), block_size));
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    REGISTER_GRADIENT_OP("SpaceToBatch", SpaceToBatchGrad);
    
    Status SpaceToBatchNDGrad(const Scope& scope, const Operation& op,
                              const std::vector<Output>& grad_inputs,
                              std::vector<Output>* grad_outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/array_grad_test.cc

      TensorShape x_shape({1, 2, 2, 1});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto paddings = Const(scope_, {{1, 1}, {1, 1}});
      TensorShape y_shape({4, 2, 2, 1});
      auto y = SpaceToBatch(scope_, x, paddings, /* block_size */ 2);
      RunTest(x, x_shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, SpaceToBatchNdGrad) {
      TensorShape x_shape({2, 2, 4, 1});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_SpaceToBatchOp : TF_Op<"SpaceToBatch", [Pure]> {
      let summary = "SpaceToBatch for 4-D tensors of type T.";
    
      let description = [{
    This is a legacy version of the more general SpaceToBatchND.
    
    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