Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for dumphdr (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

        const absl::string_view dump_file_name) {
      const absl::StatusOr<std::string> dump_dir = GetMlirDumpDir();
      if (!dump_dir.ok()) {
        return dump_dir.status();
      }
    
      auto* env = tsl::Env::Default();
      TF_RETURN_IF_ERROR(env->RecursivelyCreateDir(*dump_dir));
    
      const std::string dump_file_path =
          tsl::io::JoinPath(*dump_dir, dump_file_name);
      TF_ASSIGN_OR_RETURN(std::unique_ptr<llvm::raw_ostream> file,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/encoding/hex/hex_test.go

    		}
    	}
    }
    
    func TestDumper_doubleclose(t *testing.T) {
    	var out strings.Builder
    	dumper := Dumper(&out)
    
    	dumper.Write([]byte(`gopher`))
    	dumper.Close()
    	dumper.Close()
    	dumper.Write([]byte(`gopher`))
    	dumper.Close()
    
    	expected := "00000000  67 6f 70 68 65 72                                 |gopher|\n"
    	if out.String() != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/debug/debug_test.cc

      pm.addPass(std::make_unique<AlwaysFailPass>());
      ASSERT_TRUE(mlir::failed(pm.run(*module_)));
    
      std::string dump_dir;
      TF_ASSERT_OK(GetDumpDir(&dump_dir));
    
      std::string mlir_dump;
      TF_ASSERT_OK(tsl::ReadFileToString(
          tsl::Env::Default(),
          tsl::io::JoinPath(dump_dir, "tfl_mlir_crash_repro.mlir"), &mlir_dump));
      EXPECT_THAT(mlir_dump, Not(IsEmpty()));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/encoding/hex/hex.go

    	if len(data) == 0 {
    		return ""
    	}
    
    	var buf strings.Builder
    	// Dumper will write 79 bytes per complete 16 byte chunk, and at least
    	// 64 bytes for whatever remains. Round the allocation up, since only a
    	// maximum of 15 bytes will be wasted.
    	buf.Grow((1 + ((len(data) - 1) / 16)) * 79)
    
    	dumper := Dumper(&buf)
    	dumper.Write(data)
    	dumper.Close()
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // FILE: data/PodcastWithExtraInfo.kt
    package data
    
    class PodcastWithExtraInfo {
        lateinit var url: String
        lateinit var lastEpisodeDate: kotlin.time.TimeSource?
            set(value) {
                field = value
            }
        init {
            lastEpisodeDate = null
            url = ""
        }
    
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 595 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprInitializer.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // FILE: data/PodcastWithExtraInfo.kt
    package data
    
    class PodcastWithExtraInfo {
        lateinit var url: String
        var lastEpisodeDate: kotlin.time.TimeSource? = null
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    // FILE: main.kt
    package home
    
    import data.PodcastWithExtraInfo
    
    fun preview(featuredPodcast: PodcastWithExtraInfo) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 470 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_jax_random.cc

    // The full pipeline of converting jax random include 2 steps.
    // 1. Rename the jax random functions to tflite wrapped functions with the aid
    //    of "jax.named_call". For example, in the dumped hlo, the
    //    jax.random.uniform will have name "tfl_wrapped_jax_random_uniform".
    // 2. Replace the body of "tfl_wrapped_jax_random_uniform" and
    //    "tfl_wrapped_jax_random_normal" with tfl.CustomOp("RandomUniform") and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/plugins/atomicfu/atomicfu-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/fir-plugin-prototype/testData" />
            <option value="$PROJECT_DIR$/plugins/imports-dumper/testData" />
            <option value="$PROJECT_DIR$/plugins/jvm-abi-gen/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-base/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-cli/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/os/exec_posix.go

    			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
    		}
    	case status.Continued():
    		res = "continued"
    	}
    	if status.CoreDump() {
    		res += " (core dumped)"
    	}
    	return res
    }
    
    // ExitCode returns the exit code of the exited process, or -1
    // if the process hasn't exited or was terminated by a signal.
    func (p *ProcessState) ExitCode() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/namespace/kube.go

    	kube2.DumpDeployments(n.ctx, d, n.name)
    }
    
    var (
    	_ Instance          = &kubeNamespace{}
    	_ io.Closer         = &kubeNamespace{}
    	_ resource.Resource = &kubeNamespace{}
    	_ resource.Dumper   = &kubeNamespace{}
    )
    
    func (n *kubeNamespace) Name() string {
    	return n.name
    }
    
    func (n *kubeNamespace) Prefix() string {
    	return n.prefix
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top