Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,209 for input1 (0.13 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.h

    extern const char* const kXlaClusterAttr;
    
    // The attribute that marks certain inputs to a Node as required to be a
    // constant at compile time.  If this attribute is present then the
    // CompileTimeConstantInput information in the corresponding XlaOpKernel is
    // ignored.
    //
    // The value for this attribute, if present, has to be a list of strings naming
    // the inputs to the node that must be constant.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // Compiles a Graph from TF to HLO and adds the resulting HLO to the
    // XlaBuilder. This function adds HLO to a larger HLO computation, so
    // HLO-level inputs are supplied, and HLO-level outputs are produced.
    // xla_params is the HLO-level inputs and returns is the HLO-level outputs.
    // If unconditionally_use_output_shapes is true then the unregistered
    // attribute _output_shapes is always used to set the output shapes of the ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    It is possible to temporarily opt out of configuration input detection in the following cases:
    
    * Since Gradle 8.1, using many APIs related to the file system is correctly tracked as configuration inputs, including the file system checks, such as `File.exists()` or `File.isFile()`.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = [{
    output = input; While (Cond(output)) { output = Body(output) }
      }];
    
      let description = [{
    output = input; While (Cond(output)) { output = Body(output) }
    
    input: A list of input tensors whose types are T.
    output: A list of output tensors whose types are T.
    cond: A function that takes 'input' and returns a tensor.  If the tensor is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

                    def inputDir = file("dir1").toPath()
                    def outputFile = file("build/file1.txt").toPath()
                    def outputDir = file("build/dir1").toPath()
                    inputs.file(inputFile)
                    inputs.dir(inputDir)
                    outputs.file(outputFile)
                    outputs.dir(outputDir)
                    doLast {
                        Files.createDirectories(outputFile.parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

      // In the case of input tensor with 0 rank.
      // Whitespace tokenizer generates 1 output:
      // * String tensor for tokens.
      //
      // In the case of 1-D input tensor,
      // Whitespace tokenizer generates 2 outputs to make up a ragged tensor:
      // * 1st output is the value of ragged tensor;
      // * 2nd output is the offset.
      //
      // In the case of batched input tesnor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

      Output a = ops::_Arg(root.WithOpName("A"), DT_RESOURCE, 0);
      std::vector<NodeBuilder::NodeOut> inputs({NodeBuilder::NodeOut(a.node())});
    
      Node* call;
      NameAttrList f_name_attr;
      f_name_attr.set_name(fd.signature().name());
      TF_ASSERT_OK(
          NodeBuilder("B", "StatefulPartitionedCall", &root.graph()->flib_def())
              .Input(inputs)
              .Attr("Tin", {DT_RESOURCE})
              .Attr("Tout", {DT_RESOURCE})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

                code.setNodeMetaData(AST_NODE_METADATA_INPUTS_KEY, inputs);
                if (parentInputsVariable != null) {
                    expression.getVariableScope().putReferencedLocalVariable(parentInputsVariable);
                }
                code.getVariableScope().putDeclaredVariable(inputsVariable);
    
                if (parentInputsVariable == null) {
                    // <inputs-lvar> = <inputs-field>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            execute('showTransformedFiles')
    
            then:
            assertTransformExecuted()
    
            when:
            cleanWorkspace()
            file('inputs/baz.txt').text = file('inputs/baz.txt').text.replaceAll('\\n', '\r\n')
            execute('showTransformedFiles')
    
            then:
            assertTransformExecuted()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

                    }
                }
                task direct { inputs.files configurations.compile }
                task fileCollection { inputs.files configurations.compile.fileCollection { true } }
                task ownDependencies { dependsOn configurations.compile.dependencies }
                task allDependencies { dependsOn configurations.compile.allDependencies }
                task incomingFiles { inputs.files configurations.compile.incoming.files }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top