Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 180 for noOutput (0.23 sec)

  1. tensorflow/c/c_api.h

        TF_Session*,
        // Input names
        const TF_Output* inputs, int ninputs,
        // Output names
        const TF_Output* outputs, int noutputs,
        // Target operations
        const TF_Operation* const* target_opers, int ntargets,
        // Output handle
        const char** handle,
        // Output status
        TF_Status*);
    
    // Continue to run the graph with additional feeds and fetches. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

    }
    
    // Specification for an expected edge.
    // src is either:
    // - input name (as it appears in FunctionDef)
    // - name of output tensor (in nested "add:z:0" format)
    // dst is either:
    // - output name (as it appears in FunctionDef)
    // - <name_of_node>:<index_of_this_input_into_node> (this looks the same as
    //      output tensor naming, but it the index is actually an input index)
    struct EdgeSpec : public std::pair<string, string> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output live0 = ops::Add(root.WithOpName("live0"), m0.output, m1.output);
      Output live1 = ops::Add(root.WithOpName("live1"), m2.output, m3.output);
    
      Output halfdead0 =
          ops::Add(root.WithOpName("halfdead0"), m0.output, m2.output);
      Output halfdead1 =
          ops::Add(root.WithOpName("halfdead1"), m1.output, m3.output);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

      Output s_x = Shape(scope, x);
      Output s_min = Shape(scope, min);
      Output s_max = Shape(scope, max);
    
      Output min_mask = Less(scope, x, min);
      Output max_mask = Greater(scope, x, max);
    
      auto r_min = internal::BroadcastGradientArgs(scope, s_x, s_min);
      auto r_max = internal::BroadcastGradientArgs(scope, s_x, s_max);
    
      Output grad = grad_inputs[0];
      Output zeros = ZerosLike(scope, grad);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            when:
            run(":resolveArtifacts")
    
            then:
            output.count("transform") == 3
            output.count("transform external test-1.2.jar") == 1
            output.count("transform local test2-1.5.thing using [test-1.2.jar.external]") == 1
            output.count("transform local test3-1.5.thing using [test-1.2.jar.external]") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
      Output variable = ops::Variable(root.WithOpName("variable"),
                                      PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(root.WithOpName("read"), variable);
      Output neg = ops::Negate(root.WithOpName("negate"), read);
      Output identity = ops::Negate(root.WithOpName("identity"), neg);
      Output add = ops::Add(root.WithOpName("add"), identity, neg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

        validate_tensor(output, &dim, 1, TF_FLOAT);
    
        // Set output to 3
        float values[1] = {3.0f};
        set_tensor_data<float>(output, values, tensor_size_bytes, ctx);
        TF_DeleteStatus(s);
        TF_DeleteTensor(output);
      };
    
      SetupOp("AllocateOutputOp1", "AllocateOutput1", my_compute_func);
    
      TF_ASSERT_OK(RunOpKernel());
      Tensor* output = GetOutput(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                        content = providers.systemProperty("\${project.name}Content").orElse("content")
                        output = layout.buildDirectory.file("\${project.name}.out")
                    }
                    configurations.default.outgoing.artifact(producer.output)
                }
                repositories {
                    maven { url = uri('${remoteRepo.uri}') }
                }
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

        $image = "$(Get-InstanceMetadata 'image' | Out-String)"
        Log-Output "Windows version:`n$version"
        Log-Output "Installed hotfixes:`n$hotfixes"
        Log-Output "GCE Windows image:`n$image"
      } Catch { }
    }
    
    # Configures Window Defender preferences
    function Configure-WindowsDefender {
      if ((Get-WindowsFeature -Name 'Windows-Defender').Installed) {
        Log-Output "Configuring Windows Defender preferences"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            output.contains("Appending output property name to build cache key: outputDirectory")
            output.contains("Appending output property name to build cache key: resultsFile")
            output.contains("Build cache key for MakeGreen")
        }
    
        def "honors @PathSensitive(NONE) on input artifact property for project artifact file when caching"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
Back to top