Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 234 for placeholders (0.17 sec)

  1. tensorflow/compiler/mlir/lite/tests/end2end/unroll_batch_matmul_disabled.pbtxt

    # RUN: tf_tfl_translate -unfold_batchmatmul=false -tf-input-arrays=Placeholder,Placeholder_1 -tf-input-shapes=2,5,3:3,7 -tf-input-data-types=DT_FLOAT,DT_FLOAT -tf-output-arrays=MatMul -output-mlir %s -o - 2>&1 | FileCheck %s
    
    node {
      name: "Placeholder"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/GradleVersionResolver.java

        }
    
        static String getVersion(String json, String placeHolder) {
            Type type = new TypeToken<Map<String, String>>() {}.getType();
            Map<String, String> map = new Gson().fromJson(json, type);
            String version = map.get("version");
            if (version == null) {
                throw new GradleException("There is currently no version information available for '" + placeHolder + "'.");
            }
            return version;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 15:14:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status EmitErrorWithLocationStr(const Node& node, const Status& error_status);
    
      // Inserts a placeholder node in the graph to replace a feed output tensor,
      // and returns the new placeholder node and a boolean indicating if the
      // original input node was removed from the graph. Uses of the feed output
      // tensor are replaced with this placeholder node. If the feed output tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:filtering_files]]
    == Filtering file content
    
    Filtering file content in Gradle involves replacing placeholders or tokens in files with dynamic values.
    
    === Using `CopySpec.filter()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

        }
        case AttrValue::VALUE_NOT_SET:
          return builder->getUnitAttr();
        // kPlaceholder is not implemented.
        case AttrValue::kPlaceholder:
          return mlir::TF::PlaceholderAttr::get(builder->getContext(),
                                                value.placeholder());
        default:
          return tensorflow::errors::Unimplemented(
              absl::StrCat("Attribute ", value.DebugString()));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/array_grad_test.cc

      TensorShape x_shape({3, 5, 3});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto y = Slice(scope_, x, {1, 2, 1}, {1, 3, 2});
      RunTest(x, x_shape, y, {1, 3, 2});
    }
    
    TEST_F(ArrayGradTest, ConcatV2Grad) {
      TensorShape shape({3, 2, 5});
      std::vector<Output> xs;
      xs.push_back(Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape)));
      xs.push_back(Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad_test.cc

      auto x2 = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x2_shape));
      auto y = Add(scope_, x1, x2);
      RunTest({x1, x2}, {x1_shape, x2_shape}, {y}, {x1_shape});
    }
    
    TEST_F(NaryGradTest, AddV2) {
      TensorShape x1_shape({3, 2, 5});
      TensorShape x2_shape({2, 5});
      auto x1 = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x1_shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT);
      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT64);
    
      // The C++ node bindings immediately error out when we try construct a bogus
      // slice so we first use a placeholder to construct the Slice and then replace
      // the input.
      Output size_placeholder = ops::Placeholder(root.WithOpName("size"), DT_INT64);
      Output slice =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

       *                 v   v
       */
      // Define
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
      TF_Operation* feed2 = Placeholder(func_graph_, s_, "feed2");
      Define(-1, {}, {feed1, feed2}, {feed2, feed1}, {});
    
      // Use, run, and verify
      TF_Operation* two = ScalarConst(2, host_graph_, s_);
      TF_Operation* func_feed = Placeholder(host_graph_, s_);
      TF_Operation* func_op = Use({two, func_feed});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/DefaultTestFailureTest.groovy

            given:
            def placeholder = new PlaceholderException("com.acme.OriginalException", "custom message", null, null, null, null)
    
            when:
            def failure = TestFailure.fromTestFrameworkFailure(placeholder)
    
            then:
            with(failure) {
                causes.empty
                rawFailure == placeholder
                with(details) {
                    message == "custom message"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top