Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,232 for outInts (0.14 sec)

  1. tensorflow/cc/tools/freeze_saved_model_test.cc

      std::unordered_set<string> inputs;
      std::unordered_set<string> outputs;
      TF_ASSERT_OK(FreezeSavedModel(saved_model_bundle, &frozen_graph_def, &inputs,
                                    &outputs));
      EXPECT_EQ(expected_inputs, inputs);
      EXPECT_EQ(expected_outputs, outputs);
    }
    
    TEST_F(FreezeTest, InputsAndOutputsMultipleSignatureDefs) {
      // Test that inputs and outputs get correctly merged and populated when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformOutputs.java

         *     public abstract Provider&lt;FileSystemLocation&gt; getInputArtifact();
         *     {@literal @}Override
         *     public void transform(TransformOutputs outputs) {
         *         outputs.dir(getInputArtifact().get().getAsFile());
         *         outputs.dir(new File(getInputArtifact().get().getAsFile(), "sub-dir"));
         *     }
         * }
         * </pre>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/unified_api_testutil.cc

                    absl::Span<AbstractTensorHandle*> outputs, bool use_function) {
      if (use_function) {
        const char* fn_name = "test_fn";
        core::RefCountPtr<AbstractFunction> scoped_func;
        // Returning null tensors from a tf.function is not supported, so we keep
        // track of indices in the model's outputs are nullptr in this set.
        // The FunctionDef only outputs the non-null tensors. We later pad the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

            componentUnderTest.writeToProject()
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            componentUnderTest.changeInnerName()
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'WithInner2', 'WithInner2$Inner2', 'Consumer'
            outputs.deletedClasses('WithInner2$Inner')
        }
    
        class LibWithAnonymousClasses {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. tensorflow/cc/client/client_session_test.cc

      std::vector<Tensor> outputs;
    
      TF_EXPECT_OK(session.Run({{a, {1, 1}}}, {c}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({3, 3}, {2}));
    
      auto d = Add(root, c, {39, 39});
      outputs.clear();
      TF_EXPECT_OK(session.Run({{a, {-10, 1}}}, {d}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({31, 42}, {2}));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
            file("src/main/swift/multiply.swift").delete()
    
            expect:
            succeeds("compileDebugSwift")
            outputs.recompiledClasses()
            outputs.deletedClasses("multiply")
        }
    
        def 'changing compiler arguments rebuilds everything'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. tensorflow/cc/ops/while_loop.cc

    std::vector<OutputTensor> ToOutputTensors(const std::vector<Output>& outputs) {
      std::vector<OutputTensor> result(outputs.size());
      for (int i = 0; i < outputs.size(); ++i) {
        result[i] = ToOutputTensor(outputs[i]);
      }
      return result;
    }
    
    // Utility function for converting to internal C++ datatypes.
    std::vector<Node*> ToNodes(const std::vector<Output>& outputs) {
      std::vector<Node*> result(outputs.size());
      for (int i = 0; i < outputs.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

                #import "${otherHeaderFile.name}"
    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            otherHeaderFile << """
                // Some extra content
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFile sourceFile
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/device_copy.mlir

    func.func @fold_identity_test(%arg0: tensor<2x2xf32>, %arg1: tensor<2x2xf32>) -> tensor<2x2xf32> {
      // CHECK: tf.MatMul
      %outputs = "tf.MatMul"(%arg0, %arg1) {device = "/device:CPU:0", transpose_a = false, transpose_b = false} : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32>
      // CHECK-NOT: tf.Identity
      %outputs_0 = "tf.Identity"(%outputs) {device = "/device:CPU:0"} : (tensor<2x2xf32>) -> tensor<2x2xf32>
      func.return %outputs_0 : tensor<2x2xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeCliIncrementalCompilationIntegrationTest.groovy

            def a = source "class A {}"
            source "class B extends A {}"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            assert a.delete()
            then:
            fails language.compileTaskName
            outputs.noneRecompiled()
            outputs.deletedClasses 'A', 'B'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top