Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,123 for input1 (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
    }
    
    def XlaValidateInputsPass : Pass<"tf-xla-validate-inputs", "ModuleOp"> {
      let summary = "Validtes inputs to the TF CPU/GPU bridge";
      let description = [{
        This pass checks that the IR has valid input to CPU/GPU TF/XLA bridge.
      }];
      let constructor = "TFDevice::CreateXlaValidateInputsPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                TaskInputs inputs = task.getInputs();
                inputs.files(extension.getCssFiles())
                    .withPropertyName("manual")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir("src/main/resources")
                    .withPropertyName("resources")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir(extension.getUserManual().getSnippets())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

             ++subgraph_idx) {
          const auto subgraph = model->subgraphs()->Get(subgraph_idx);
          for (size_t i = 0; i < subgraph->inputs()->size(); ++i) {
            if (subgraph->inputs()->Get(i) == tensor_idx) {
              return true;
            }
          }
          for (size_t i = 0; i < subgraph->outputs()->size(); ++i) {
            if (subgraph->outputs()->Get(i) == tensor_idx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

                                           ValueRange branch_args,
                                           bool &has_resource_result) {
      // For while, the branch inputs and outputs need to match.
      bool io_match = isa<TF::WhileOp>(op);
    
      has_resource_result = false;
      // Check if the same input argument number is passed through all functions.
      for (OpResult result : op->getResults()) {
        if (!IsResource(result)) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                }
                outputFile.text = "leftover file"
            }
    
            void createInputs() {
                file("input.txt").text = "input file"
                file("inputs").create {
                    file("inputFile1.txt").text = "input 1 in dir"
                    file("inputFile2.txt").text = "input 2 in dir"
                }
            }
    
            void staleFilesHaveBeenRemoved() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/scalar.go

    	if len(x) != 64 {
    		return nil, errors.New("edwards25519: invalid SetUniformBytes input length")
    	}
    
    	// We have a value x of 512 bits, but our fiatScalarFromBytes function
    	// expects an input lower than l, which is a little over 252 bits.
    	//
    	// Instead of writing a reduction function that operates on wider inputs, we
    	// can interpret x as the sum of three shorter values a, b, and c.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

      auto filename_input_type = RankedTensorType::get(
          /*shape=*/{}, /*elementType=*/builder.getType<TF::StringType>());
    
      FunctionType func_type = builder.getFunctionType(
          /*inputs=*/{filename_input_type}, /*results=*/{});
      auto save_func = builder.create<func::FuncOp>(
          NameLoc::get(builder.getStringAttr(kTfQuantSaveFuncName)),
          /*sym_name=*/kTfQuantSaveFuncName, func_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

          llvm::ArrayRef<Value>{input, get_layout.getLayout()});
    }
    
    // Performs transformation for a non-replicated input.
    void HandleInput(Value input, const int64_t execute_arg_index,
                     TF::TPUExecuteOp execute, tf_device::LaunchOp execute_launch,
                     tf_device::LaunchOp compile_launch) {
      OpBuilder builder = CreateBuilderAfterOp(compile_launch);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. fastapi/_compat.py

                None if separate_input_output_schemas else "validation"
            )
            inputs = [
                (field, override_mode or field.mode, field._type_adapter.core_schema)
                for field in fields
            ]
            field_mapping, definitions = schema_generator.generate_definitions(
                inputs=inputs
            )
            return field_mapping, definitions  # type: ignore[return-value]
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME: [[INPUT:%.*]]: tensor<1x?xf32>
    func.func @random_shuffle_first_dim_1(%input: tensor<1x?xf32>) -> tensor<1x?xf32> {
      %0 = "tf.RandomShuffle"(%input) : (tensor<1x?xf32>) -> (tensor<1x?xf32>)
      // CHECK-NEXT: return [[INPUT]]
      func.return %0: tensor<1x?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @random_shuffle_1D_16
    // CHECK-SAME: [[INPUT:%.*]]: tensor<16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top