Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for print_op (0.18 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

          Output new_output(new_node, oidx);
          if (debugging_opts.print_outputs) {
            string cpu_device = "/job:localhost/replica:0/task:0/device:CPU:0";
            ops::Print print_op(s.WithOpName("print_", oidx)
                                    .WithDevice(cpu_device)
                                    .WithAssignedDevice(cpu_device),
                                new_output, {new_output},
    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/mlir/lite/utils/fake_quant_utils.cc

      });
    
      for (auto* op : wrapped_ops) {
        auto parent_op = op->getParentOfType<TFL::CustomTfOp>();
        if (!parent_op) continue;
        builder.setInsertionPoint(parent_op);
    
        // Recreate the operation by using the wrapper's operands and return types.
        // TODO(fengliuai): copy the regions.
        OperationState state(op->getLoc(), op->getName().getStringRef(),
                             parent_op->getOperands(), parent_op->getResultTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    inline void PrintTo(const signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/debugger/dumper.go

    	for _, p := range n.Pods {
    		nodeData.WriteString(printPod(p.Pod))
    	}
    	// Dumping nominated pods info on the node
    	nominatedPodInfos := d.podQueue.NominatedPodsForNode(name)
    	if len(nominatedPodInfos) != 0 {
    		nodeData.WriteString(fmt.Sprintf("Nominated Pods(number: %v):\n", len(nominatedPodInfos)))
    		for _, pi := range nominatedPodInfos {
    			nodeData.WriteString(printPod(pi.Pod))
    		}
    	}
    	return nodeData.String()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/process/TestJavaMain.java

                System.out.println("ARGUMENTS: " + String.join(" ", args));
            }
            System.out.println("ENVIRONMENT:");
            printMap(System.getenv(), "TEST_");
    
            System.out.println("PROPERTIES:");
            printMap(System.getProperties(), "test.");
        }
    
        private static void printMap(Map<?, ?> items, String prefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    inline void PrintTo(const signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  7. test/typeparam/issue50690b.go

    	PrintFn() func(T)
    }](message T, obj S) {
    	obj.PrintFn()(message)
    }
    
    type PrintShop[T ~string] struct {
    	ID       T
    	PrintFn_ func(T)
    }
    
    // Field accesses through type parameters are disabled
    // until we have a more thorough understanding of the
    // implications on the spec. See issue #51576.
    // Use accessor method instead.
    
    func (s PrintShop[T]) PrintFn() func(T) { return s.PrintFn_ }
    
    func main() {
    	PrintWithPrinter(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 916 bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/StyledTable.java

                    ).mapToInt(String::length).max().orElse(0);
                }
    
                output.style(Header);
                printRow(model, output, colWidths, model.headers, ' ');
                output.style(Normal);
                output.println();
                // Print the separator row
                printRow(
                    model, output, colWidths,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 21:03:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

            val actual = prettyPrint {
                printMap(
                    map = elementsByMarker,
                    omitSingleKey = true,
                    renderKey = { key, _ -> append("$key:") }
                ) { marker, byMarker ->
                    val elementsByMarkerAndContext = byMarker.groupBy { it.context }
                    printMap(
                        map = elementsByMarkerAndContext,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

        // updated if operands' shapes change after inlining. Without this
        // restriction, it would require tensor cast ops.
        func::FuncOp parent_op = op->getParentOfType<func::FuncOp>();
        if (!llvm::hasSingleElement(parent_op)) return failure();
    
        // Find the then and else branch functions.
        func::FuncOp then_func = op.then_function();
        func::FuncOp else_func = op.else_function();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top