Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 891 for output0 (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      }
      return absl::OkStatus();
    }
    
    Status MlirFunctionContext::Finalize(OutputList* outputs,
                                         AbstractFunction** f) {
      Block& body = func_.getBody().front();
      SmallVector<Value, 8> ret_operands;
      for (auto* output : outputs->outputs) {
        auto* operand = dyn_cast<MlirTensor>(output);
        if (!operand)
          return InvalidArgument("Capturing eager tensors is not supported yet.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/legacy_reshape.json

              "quantization": {
              }
            },
            {
              "shape": [2, 2],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [0],
          "outputs": [1],
          "operators": [
            {
              "inputs": [ 0 ],
              "outputs": [ 1 ],
              "builtin_options_type": "ReshapeOptions",
              "builtin_options": {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 986 bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            // TODO - should just write this as a bean field of the outputs object, and also do this for the registered properties above
            if (task.outputs.upToDateSpec.isEmpty) {
                writeBoolean(false)
            } else {
                writeBoolean(true)
                write(task.outputs.upToDateSpec)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/import_json.json

                16
              ],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            3
          ],
          "operators": [
            {
              "inputs": [
                0,
                1,
                -1
              ],
              "outputs": [
                3
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        if (!output_tensor_type) {
          return switchn.emitOpError()
                 << "expects outputs to have tensor type but got " << output_type;
        }
    
        // If the output type is a ref type, then the operand type should also be of
        // the same ref type. However, if the output type is a non-ref type T, then
        // the operand can be tensor of type T or T_REF.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                        @Override
                        public void transform(TransformOutputs outputs) {
                            File input = getInputArtifact().get().getAsFile();
                            File output = outputs.file(input.getName() + ".txt");
    
                            try {
                                Files.write(output.toPath(), Collections.singleton(String.valueOf(input.length())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		gpcas       = regInfo{inputs: []regMask{gp | sp | sb, gp, gp}, outputs: []regMask{gp}}
    		fp01        = regInfo{inputs: nil, outputs: []regMask{fp}}
    		fp11        = regInfo{inputs: []regMask{fp}, outputs: []regMask{fp}}
    		fpgp        = regInfo{inputs: []regMask{fp}, outputs: []regMask{gp}}
    		gpfp        = regInfo{inputs: []regMask{gp}, outputs: []regMask{fp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      shard_output_types.reserve(outputs.size());
      full_output_types.reserve(outputs.size());
      for (const auto& output : outputs) {
        Type shard_type;
        if (failed(GetShardShapedType(original_op, num_cores_per_replica,
                                      output.getType(), shard_type)))
          return mlir::failure();
        shard_output_types.push_back(shard_type);
        full_output_types.push_back(output.getType());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      for (const Value original_output_value : outputs) {
        // Use the mapped values in the newly created function that correspond to
        // outputs in the original function.
        result_values.push_back(mapper.lookup(original_output_value));
      }
      builder.create<func::ReturnOp>(module_op.getLoc(), result_values);
    
      // 2) Create XlaCallModuleOp (with ops mapped).
      CreateXlaCallModuleOp(inputs, outputs, result_types, reverse_subgraph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        ${server.callFromBuild('size-transform')}
                        File output = outputs.file(input.name + parameters.suffix)
                        output.text = String.valueOf(input.length())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top