Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for print_op (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

      return GetPermutationAndTransposedShape(inverse_permutation_array, input_type,
                                              rewriter);
    }
    
    LogicalResult NormalizeIndexVector(Operation* parent_op, Value& indices,
                                       ShapedType& indices_type,
                                       int64_t index_vector_dim,
                                       ConversionPatternRewriter& rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

                    .append(StringEscapeUtils.escapeJson(e.getValue())).append('"'));
            buf.append('}');
            printLog(buf.toString());
        }
    
        protected void printLog(final String message) {
            logger.info(message);
        }
    
        protected String getClientIp() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. istioctl/pkg/util/formatting/formatter.go

    	switch format {
    	case LogFormat:
    		return printLog(ms, colorize), nil
    	case JSONFormat:
    		return printJSON(ms)
    	case YAMLFormat:
    		return printYAML(ms)
    	default:
    		return "", fmt.Errorf("invalid format, expected one of %v but got %q", MsgOutputFormatKeys, format)
    	}
    }
    
    func printLog(ms diag.Messages, colorize bool) string {
    	logOutput := make([]string, 0, len(ms))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 02:41:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

                                }
                            }
                        }
                    }
                }
            """
    
            when:
            runBuild('printFoo')
    
            then:
            task(':printFoo').originPlugin.displayName == "MyPlugin"
        }
    
        private void runBuild(String task, Action<BuildLauncher> config = {}) {
            withConnection {
                    def launcher = newBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/gradients/tape/tape_operation.cc

    #include "tensorflow/c/eager/gradients.h"
    
    namespace tensorflow {
    namespace gradients {
    TapeOperation::TapeOperation(AbstractOperation* parent_op, Tape* tape,
                                 const GradientRegistry& registry)
        : AbstractOperation(kTape),
          parent_op_(parent_op),
          tape_(tape),
          registry_(registry) {
      // TODO(b/172003047): Consider making AbstractOperation RefCounted.
      // parent_op_->Ref();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. test/print.go

    	println(complex(9.0, 10.0)) // printcomplex
    	println(true)               // printbool
    	println(false)              // printbool
    	println("hello")            // printstring
    	println("one", "two")       // printsp
    
    	// test goprintf
    	defer println((interface{})(nil))
    	defer println((interface {
    		f()
    	})(nil))
    	defer println((map[int]int)(nil))
    	defer println(([]int)(nil))
    	defer println(int64(-11))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      }
      EliminateUnusedResults(op, &can_eliminate);
      return success();
    }
    
    // Removes identities and canonicalizes all operations within `parent_op`.
    LogicalResult CleanupAndCanonicalize(Operation *parent_op) {
      auto walk_result = parent_op->walk([](Operation *op) {
        // Cleanup code in attached regions.
        for (Region &region : op->getRegions()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            succeeds("printFoo")
    
            then:
            outputContains("JAR = DEFAULT")
    
            when:
            executer.withJavaHome(java11Home).withArguments("-Porg.gradle.java.installations.paths=$java8Home,$java11Home")
            succeeds("printFoo")
    
            then:
            outputContains("JAR = 11")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/node_matchers.h

    }  // namespace matchers
    
    // If `g` has a node named `name` returns it, otherwise returns null.
    Node* FindNodeByName(Graph* g, absl::string_view name);
    }  // namespace testing
    
    void PrintTo(const Node* n, ::std::ostream* os);
    void PrintTo(Node* n, ::std::ostream* os);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

        Operation* iter_op = op;
        bool remove_attr = false;
        while (auto* parent_op = iter_op->getParentOp()) {
          if (parent_op->getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr)) {
            remove_attr = true;
            break;
          }
          iter_op = parent_op;
        }
        if (remove_attr) op->removeAttr(kXlaOutsideCompilationAttr);
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top