Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 871 for output1 (0.26 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

              e->dst_input());
        }
      }
    
      auto output = std::make_unique<Graph>((*graph)->op_registry());
      TF_RETURN_WITH_CONTEXT_IF_ERROR(
          EncapsulateSubgraphsInFunctions(
              kXlaClusterIdAttr, **graph, RewriteSubgraph,
              /*reuse_existing_functions=*/true, &output, flib_def),
          "EncapsulateXlaComputationsPass failed");
      graph->swap(output);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/c/while_loop_test.cc

      params_->body_outputs[1] = params_->body_inputs[1];
    
      // Finalize while loop
      ExpectOK();
    
      // Validate while loop outputs returned by TF_FinishWhile()
      EXPECT_TRUE(outputs_[0].oper != nullptr);
      EXPECT_GE(outputs_[0].index, 0);
      EXPECT_TRUE(outputs_[1].oper != nullptr);
      EXPECT_GE(outputs_[1].index, 0);
    
      // Check that cond and body inputs are not present
      for (int i = 0; i < params_->ninputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

            /**
             * Adds an output location to the result.
             *
             * @param workspaceAction an action to run when the output is a produced output in the workspace.
             */
            public void addOutput(File output, Consumer<File> workspaceAction) {
                if (output.equals(inputArtifact)) {
                    delegate.addEntireInputArtifact();
                } else if (output.equals(outputDir)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

    // CHECK: "tf.LookupTableSizeV2"(%arg1)
    // CHECK: "tf.LookupTableFindV2"(%arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/386Ops.go

    	// Common regInfo
    	var (
    		gp01      = regInfo{inputs: nil, outputs: gponly}
    		gp11      = regInfo{inputs: []regMask{gp}, outputs: gponly}
    		gp11sp    = regInfo{inputs: []regMask{gpsp}, outputs: gponly}
    		gp11sb    = regInfo{inputs: []regMask{gpspsb}, outputs: gponly}
    		gp21      = regInfo{inputs: []regMask{gp, gp}, outputs: gponly}
    		gp11carry = regInfo{inputs: []regMask{gp}, outputs: []regMask{gp, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K 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/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)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

        tf_executor.graph {
          %outputs, %control = tf_executor.island wraps "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. pkg/kube/krt/collection.go

    	o.mu.RLock()
    	defer o.mu.RUnlock()
    	return slices.Clone(o.h)
    }
    
    // multiIndex stores input and output objects.
    // Each input and output can be looked up by its key.
    // Additionally, a mapping of input key -> output keys stores the transformation.
    type multiIndex[I, O any] struct {
    	outputs  map[Key[O]]O
    	inputs   map[Key[I]]I
    	mappings map[Key[I]]sets.Set[Key[O]]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top