Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 830 for inputs_ (0.14 sec)

  1. tensorflow/c/eager/gradient_checker.cc

                             absl::Span<AbstractTensorHandle* const> inputs,
                             int input_index, bool use_function,
                             AbstractTensorHandle** numerical_grad) {
      vector<AbstractTensorHandle*> theta_inputs(inputs.size());
      for (int i{}; i < inputs.size(); ++i) {
        theta_inputs[i] = inputs[i];
      }
    
      AbstractTensorHandle* theta =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.cc

      SmallVector<StringRef> inputs;
      mlir::dyn_cast_or_null<StringAttr>(entry_function_attr.get("inputs"))
          .strref()
          .split(inputs, /*Separator=*/",");
    
      return inputs;
    }
    
    void ConvertMainArgAttrs(func::FuncOp main_func_op, const int arg_idx,
                             const StringRef index_path) {
      const ArrayRef<NamedAttribute> arg_attrs =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/loader.cc

      CallableOptions callable_options;
      std::vector<Tensor> feed_tensors;
      *callable_options.mutable_run_options() = run_options;
      for (const auto& input : inputs) {
        const string& name = input.first;
        const Tensor& tensor = input.second;
        callable_options.add_feed(name);
        feed_tensors.push_back(tensor);
      }
      for (const string& output_tensor_name : output_tensor_names) {
        callable_options.add_fetch(output_tensor_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MixInCoreTypesTransformingClassLoaderIntegrationTest.groovy

                        Assert.returnTypesFor task.inputs, "dir", TaskInputFilePropertyBuilder, TaskInputFilePropertyBuilderInternal
                        Assert.returnTypesFor task.inputs, "file", TaskInputFilePropertyBuilder, TaskInputFilePropertyBuilderInternal
                        Assert.returnTypesFor task.inputs, "files", TaskInputFilePropertyBuilder, TaskInputFilePropertyBuilderInternal
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/op.go

    		a.reg = i
    		return a.reg
    	}
    
    	k := len(i.inputs)
    	for _, p := range a.abiInfo.InParams() {
    		for _, r := range p.Registers {
    			m := archRegForAbiReg(r, c)
    			a.reg.inputs = append(a.reg.inputs, inputInfo{idx: k, regs: (1 << m)})
    			k++
    		}
    	}
    	a.reg.inputs = append(a.reg.inputs, i.inputs...) // These are less constrained, thus should come last
    	k = len(i.outputs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    OpView::OpView(OpSpec op)
        : op_(op),
          input_args_(op_.Inputs().begin(), op_.Inputs().end()),
          output_args_(op_.Outputs().begin(), op_.Outputs().end()),
          argument_attrs_(op_.Attributes().begin(), op_.Attributes().end()) {
      // Initialize function arguments
      all_arguments_.push_back(OpArgumentView("AbstractContext*", "ctx"));
      for (const auto& arg : op_.Inputs()) {
        all_arguments_.push_back(OpArgumentView(arg));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java

                    Option.empty(),
                    Option.empty(),
                    getExtra()
            );
    
            Inputs inputs = incremental.inputs(compileOptions, compilers, setup, previousResult);
            if (LOGGER.isDebugEnabled()) {
                LOGGER.debug(inputs.toString());
            }
            if (spec.getScalaCompileOptions().isForce()) {
                // TODO This should use Deleter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/gradients.cc

      for (auto input : inputs) {
        forward_op_->inputs.push_back(input);
      }
      return absl::OkStatus();
    }
    
    Status SetAttrString(AbstractOperation* op_, const char* attr_name,
                         const char* data, size_t length,
                         ForwardOperation* forward_op_) {
      forward_op_->attrs.Set(attr_name, StringPiece(data, length));
      return op_->SetAttrString(attr_name, data, length);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.cc

    }
    
    }  // anonymous namespace
    
    std::vector<const Tensor*> InputsFromContext(OpKernelContext* ctx) {
      std::vector<const Tensor*> inputs;
      inputs.reserve(ctx->num_inputs());
      for (int input_idx = 0; input_idx < ctx->num_inputs(); input_idx++) {
        inputs.push_back(&ctx->input(input_idx));
      }
      return inputs;
    }
    
    absl::StatusOr<std::vector<int>> GetConstantInputIndicesFromContext(
        OpKernelContext* ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_inputs_outputs]]
    == Task inputs and outputs
    
    In the most common case, a task takes some inputs and generates some outputs.
    We can consider the process of Java compilation as an example of a task.
    The Java source files act as inputs of the task, while the generated class files, i.e. the result of the compilation, are the outputs of the task.
    
    .Example task inputs and outputs
    image::taskInputsOutputs.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top