Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 652 for output0 (0.54 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

        s.graph()->RemoveControlEdge(e);
      }
    }
    
    struct XlaClusterInfo {
      std::vector<Output> constant_inputs;
      std::vector<Output> non_constant_inputs;
      std::vector<Output> resource_inputs;
      NameAttrList function;
    };
    
    Output IncomingEdgeAsOutput(const Edge* e) {
      return Output(e->src(), e->src_output());
    }
    
    Status GetXlaClusterInfo(Node* n, XlaClusterInfo* result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_launch_util.cc

      Allocator* allocator = ctx->device()->GetAllocator({});
    
      // Computation output should always be a tuple.
      VLOG(2) << "Result tuple shape: " << output.on_host_shape().DebugString();
      VLOG(2) << "Result tuple shape (on device): "
              << output.on_device_shape().DebugString();
      CHECK_EQ(ctx->num_outputs(), compilation_result->outputs.size());
    
      // If the on-host-shape isn't a tuple, create a new single-element tuple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
        # Extra output path occasionally used for comparing two different
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

        }
    
        def "allows reconfiguring project cache dir with relative directory"() {
            given:
            buildFile "task foo { outputs.file file('out'); doLast { } }"
    
            when:
            executer.withTasks("foo").withArguments("--project-cache-dir", ".foo").run()
    
            then:
            assert file(".foo").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

        }
      }
    }
    
    // Information to identify an output in its node and in the model output list.
    // Ex: If the model output list is ["add:0", "topk:0": "topk:1"], then the
    // output corresponding to "topk:1" will have output_index=2 and tensor_index=1.
    struct OutputInfo {
      // The index of this output in the model output list.
      int32_t output_index;
      // The index of this output in its node.
      int32_t tensor_index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util.h

          const std::map<int, const Tensor*>& resource_vars,
          int missing_ctx_input_prefix,
          const xla::HloInputOutputAliasConfig& input_output_alias);
    
      // Given the XLA output in `output`, populate all outputs of `ctx`.  Also
      // writes out the resource variable updates.
      //
      // Updates to all resource variables are written in a single atomic operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    - or the parent of the output location exists and is a file.
    
    For example, you've set an output directory to `/some/path/file.txt` instead of `/some/path`.
    It's also possible that you have configured an output directory like `/some/path` but that an ancestor `/some` is a regular file.
    
    To fix this problem, make sure that the configured output is a directory (for properties which expect a directory) or a file (for tasks which expect a file).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        uint64_t, llvm::SmallVector<mlir::TF::TPUPartitionedOutputV2Op, 8>>;
    
    // Returns the partitioned output ops from the cluster if there are any,
    // along with any single user identity ops between them. Not all outputs
    // of a cluster must be partitioned, so the output is a map from cluster
    // output ids to ops.
    std::tuple<PartitionedClusterOutputMap,
               llvm::SmallVector<mlir::TF::IdentityOp, 8>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            execHandleFactory.newExec() >> exec
            PrintStream output
            exec.setStandardOutput(_ as OutputStream) >> { OutputStream outputStream ->
                output = new PrintStream(outputStream)
                null
            }
            def handle = Mock(ExecHandle)
            handle.start() >> handle
            handle.waitForFinish() >> {
                // important to output in the order of the enum members as parsing uses enum ordinals
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

        arg_types.push_back(arg.getType());
        arg_locs.push_back(arg.getLoc());
      }
    
      SmallVector<Type> output_types;
      for (const Value output : xla_call_module_op.getOutput()) {
        output_types.push_back(output.getType());
      }
    
      entry_func_op.setFunctionType(
          rewriter.getFunctionType(arg_types, output_types));
    
      // Replace argument types and locs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top