Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for as_str (0.46 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

    }  // namespace mlir
    
    int main(int argc, char** argv) {
      llvm::InitLLVM y(argc, argv);
      llvm::cl::ParseCommandLineOptions(argc, argv);
      auto file_or_err = llvm::MemoryBuffer::getFileOrSTDIN(inputFileName.c_str());
      if (std::error_code error = file_or_err.getError()) {
        llvm::errs() << argv[0] << ": could not open input file '" << inputFileName
                     << "': " << error.message() << "\n";
        return 1;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

        if (!tsl::io::GetTestUndeclaredOutputsDir(&test_dir_)) {
          test_dir_ = tsl::testing::TmpDir();
        }
      }
    
      void SetUp() override {
        tsl::setenv("TF_QUANT_MLIR_DUMP_PREFIX", test_dir_.c_str(), 1);
    
        mlir::DialectRegistry dialects;
        dialects.insert<mlir::BuiltinDialect, mlir::func::FuncDialect,
                        mlir::stablehlo::StablehloDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. operator/pkg/name/name.go

    	PDBStr                            = "PodDisruptionBudget"
    	ReplicaSetStr                     = "ReplicaSet"
    	RoleStr                           = "Role"
    	RoleBindingStr                    = "RoleBinding"
    	SAStr                             = "ServiceAccount"
    	ServiceStr                        = "Service"
    	SecretStr                         = "Secret"
    	StatefulSetStr                    = "StatefulSet"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

        node_name = std::string(attr.getValue());
      }
      absl::StatusOr<std::unique_ptr<tensorflow::NodeDef>> node_def =
          tensorflow::ConvertTFDialectOpToNodeDef(
              inst, node_name.c_str(), /*ignore_unregistered_attrs=*/true);
      RETURN_FAILURE_IF_ERROR(node_def.status());
    
      const FallbackState& fallback_state = GetDefaultFallbackState();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_unified_experimental.cc

      const char* comma = "";
      for (const string& factory : factories_sorted) {
        msg += comma + factory;
        comma = ", ";
      }
      msg += ")";
    
      return errors::InvalidArgument(msg.c_str());
    }
    
    static TracingContext* CreateTracingExecutionContext(const char* fn_name,
                                                         TF_Status* s) {
      if (default_factory) {
        return default_factory(fn_name, s);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	FILE_RENAME_FROM   = 0x40
    	UNMOUNTED          = 0x20000000
    	MOUNTEDOVER        = 0x40000000
    	FILE_EXCEPTION     = 0x60000070
    )
    
    const (
    	TUNNEWPPA = 0x540001
    	TUNSETPPA = 0x540002
    
    	I_STR     = 0x5308
    	I_POP     = 0x5303
    	I_PUSH    = 0x5302
    	I_LINK    = 0x530c
    	I_UNLINK  = 0x530d
    	I_PLINK   = 0x5316
    	I_PUNLINK = 0x5317
    
    	IF_UNITSEL = -0x7ffb8cca
    )
    
    type strbuf struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/html/template/error.go

    	//   example
    	//     <script>alert("{{.X}}")</script>
    	//   should work, and if {{.X}} is a partial escape sequence such as
    	//   "xA0", mark the whole sequence as safe content: JSStr(`\xA0`)
    	ErrPartialEscape
    
    	// ErrRangeLoopReentry: "on range loop re-entry: ..."
    	// Example:
    	//   <script>var x = [{{range .}}'{{.}},{{end}}]</script>
    	// Discussion:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top