Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for outputDir (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

            // [(replica:0,core:0), (replica:1,core:0), ...,
            //  (replica:0,core:1), (replica:1,core:1), ...]
            uint64_t output_id =
                core_id * num_replicas + replica_id + results.size();
            result.replaceAllUsesWith(replicate_op.getResult(output_id));
          }
        }
    
        // Assume all the replicas have the same structure.
        mlir::TF::TPUPartitionedOutputV2Op first_op = *(ops.begin());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    				panic("internal error: a.output not set")
    			}
    			outputID, _, err := c.Put(a.actionID, r)
    			r.Close()
    			if err == nil && cfg.BuildX {
    				sh.ShowCmd("", "%s # internal", joinUnambiguously(str.StringList("cp", target, c.OutputFile(outputID))))
    			}
    			if b.NeedExport {
    				if err != nil {
    					return err
    				}
    				a.Package.Export = c.OutputFile(outputID)
    				a.Package.BuildID = a.buildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

            paths.collect { it.replaceAll('/', Matcher.quoteReplacement(File.separator)) }
        }
    
        SearchResult<GccMetadata> output(String outputStr, GccCompilerType compilerType = GCC) {
            output(outputStr, "", compilerType)
        }
    
        SearchResult<GccMetadata> output(String output, String error, GccCompilerType compilerType = GCC, List<File> path = []) {
            runsCompiler(output, error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. hack/update-codegen.sh

            k8s.io/kube-openapi/cmd/openapi-gen
    
        # The result file, in each pkg, of open-api generation.
        local output_file="${GENERATED_FILE_PREFIX}openapi.go"
    
        local output_dir="pkg/generated/openapi"
        local output_pkg="k8s.io/kubernetes/${output_dir}"
        local known_violations_file="${API_KNOWN_VIOLATIONS_DIR}/violation_exceptions.list"
    
        local report_file="${OUT_DIR}/api_violations.report"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/action.go

    		}
    
    		c := cache.Default()
    		outputID, _, err := c.Put(a.actionID, r)
    		r.Close()
    		if err != nil {
    			return fmt.Errorf("error adding target to cache: %w", err)
    		}
    		if cfg.BuildX {
    			sh.ShowCmd("", "%s # internal", joinUnambiguously(str.StringList("cp", a.Target, c.OutputFile(outputID))))
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top