Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for DETAILS (0.11 sec)

  1. cluster/gce/util.sh

          exit 2
        fi
      fi
    
      local gcloud="gcloud"
    
      local accelerator_args=()
      # VMs with Accelerators cannot be live migrated.
      # More details here - https://cloud.google.com/compute/docs/gpus/add-gpus#create-new-gpu-instance
      if [[ -n "${NODE_ACCELERATORS}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self.assertTrue(self._contains_quantized_function_call(output_graphdef))
    
        # Makes sure that the original function identified by the signature key
        # `main` is renamed to `main_0` (see `InsertMainFunctionPass` for details).
        self.assertTrue(
            any(
                map(
                    lambda func: func.signature.name == 'main_0',
                    output_graphdef.library.function,
                )
            )
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                              : mlir::func::FuncOp::Visibility::Private;
        func.setVisibility(visibility);
      }
    }
    
    // Reorder the ops in the module to make testing easier and less dependent
    // on implementation details such as the order of functions in the
    // FunctionDefLibrary.
    //
    // The order this ensures is:
    // 1. GlobalTensorOp's
    // 2. FuncOps's.
    //
    // Within each of 1. and 2., ops are sorted by exported name (if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // Size: 18 bytes, 9 elements
    var m49Index = [9]int16{
    	0, 59, 108, 143, 181, 220, 259, 291,
    	333,
    }
    
    // fromM49 contains entries to map UN.M49 codes to regions. See m49Index for details.
    // Size: 666 bytes, 333 elements
    var fromM49 = [333]uint16{
    	// Entry 0 - 3F
    	0x0201, 0x0402, 0x0603, 0x0824, 0x0a04, 0x1027, 0x1205, 0x142b,
    	0x1606, 0x1868, 0x1a07, 0x1c08, 0x1e09, 0x202d, 0x220a, 0x240b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    		/* TH field for dcbt/dcbtst: */
    		/* 0 = Block access - program will soon access EA. */
    		/* 8-15 = Stream access - sequence of access (data stream). See section 4.3.2 of the ISA for details. */
    		/* 16 = Block access - program will soon make a transient access to EA. */
    		/* 17 = Block access - program will not access EA for a long time. */
    
    		/* L field for dcbf: */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    // arguments to asmand, which typically follows the call to asmvex.
    // The final two arguments are the VEX prefix (see encoding above)
    // and the opcode byte.
    // For details about vex prefix see:
    // https://en.wikipedia.org/wiki/VEX_prefix#Technical_description
    func (ab *AsmBuf) asmvex(ctxt *obj.Link, rm, v, r *obj.Addr, vex, opcode uint8) {
    	ab.vexflag = true
    	rexR := 0
    	if r != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    			t.Errorf("Backend read %d request body bytes; want %d", len(slurp), len(requestBody))
    			return
    		}
    		if !bytes.Equal(slurp, requestBody) {
    			t.Error("Backend read wrong request body.") // 1MB; omitting details
    			return
    		}
    		bodyOkay <- true
    		<-gone
    		gotCloseNotify <- true
    	})).ts
    
    	conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    			obj.APCDATA,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			break
    		}
    	}
    }
    
    // chipfloat7() checks if the immediate constants available in  FMOVS/FMOVD instructions.
    // For details of the range of constants available, see
    // http://infocenter.arm.com/help/topic/com.arm.doc.dui0473m/dom1359731199385.html.
    func (c *ctxt7) chipfloat7(e float64) int {
    	ei := math.Float64bits(e)
    	l := uint32(int32(ei))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top