Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 668 for input0 (0.09 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

                    }
                }
            """
        }
    
        def "detects input file change just before the task is executed"() {
            def inputFile = file("input.txt")
            buildFile << """
                def inputFile = file("input.txt")
                def outputFile = file("build/output.txt")
    
                task consumer {
                    inputs.file(inputFile)
                    outputs.file(outputFile)
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

    ABSL_DEPRECATED(
        "Please use the other overload of this function which accepts structured "
        "inputs instead of strings")
    // Converts a TensorFlow GraphDef contained in `input` param into a MLIR module.
    // Creates MLIR entities into the given MLIR `context`.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    GraphdefToMlirTranslateFunction(
        llvm::StringRef input, absl::string_view input_arrays,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

                      absl::AbortedError("The input `min` must have float type."));
          OP_REQUIRES(context, context->input_type(i * 3 + 1) == DT_FLOAT,
                      absl::AbortedError("The input `max` must have float type."));
          OP_REQUIRES(
              context, context->input_type(i * 3 + 2) == DT_INT64,
              absl::AbortedError("The input `histogram` must have int64 type."));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
        const GraphDebugInfo& debug_info, const GraphDef& input,
        std::string* result) {
      using ::tflite::optimize::ReducedPrecisionSupport;
      mlir::MLIRContext context;
      GraphImportConfig specs;
      mlir::quant::QuantizationSpecs quant_specs;
    
      // Parse input arrays.
      std::vector<std::string> node_names;
      std::vector<std::string> node_dtypes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        $metadata is a serialized TPUCompileMetadataProto describing the shapes and types of the inputs to the computation, as well as a mapping onto the TPU pod topology.
        $constant_operand_indices are the indices of the inputs that are constant to the TPU program (e.g. weights in inference), the rest of the inputs are input tensors.
        constant_operand_indices is sorted in ascending order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

                // TODO when implemented, this assertion should be replaced with the commented one:
                inputs.expect(allOf(startsWith("Plugin class 'SneakyPluginA': file '${FileUtils.testFileName}'"), containsString(FileUtils.testFileName)))
                /*
                pluginClasses.forEach {
                    inputs = inputs.expect(allOf(startsWith("Plugin class '$it':"), containsString(FileUtils.testFileName))))
                }*/
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

          cost += GetRankedTensorSize(type);
        } else {
          // For unranked tensors, use the max size among the input tensors. This is
          // because the only dynamic information of the function should be the
          // input, so the size of dynamic tensors should be usually capped by
          // inputs' sizes.
          cost += max_arg_size_;
        }
      }
    
      cost_map_[op] = cost;
    }
    
    }  // namespace tfrt_compiler
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            buildFile << """
    // This is a workaround to bust the JVM's file canonicalization cache
    def f = file("delete-me")
    f.createNewFile()
    f.delete() // invalidates cache
    
    task work {
        inputs.file('in.txt')
        inputs.dir('in-dir')
        def outTxt = file('out.txt')
        def outDir = file('out-dir')
        outputs.file(outTxt)
        outputs.dir(outDir)
        doLast {
            outTxt.text = 'content'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top