(mlir-py39cuda12) nyck33@lenovo-gtx1650:/mnt/d/LLVM/NewPolygeistDir/llvm-project/mlir/test/INtegration/GPU/Cuda/TensorCore$ mlir-opt wmma-matmul-f16.mlir | mlir-opt -test-lower-to-nvvm="cubin-chip=sm_75 cubin-format=cubin" | mlir-cpu-runner --shared-libs=$MLIR_CUDA_RUNTIME --shared-libs=$MLIR_RUNNER_UTILS --entry-point-result=void
<stdin>:1:1: error: Invalid format specified.
module {
^
<stdin>:1:1: note: see current operation:
"builtin.module"() ({
"llvm.func"() <{CConv = #llvm.cconv<ccc>, function_type = !llvm.func<ptr (i64)>, linkage = #llvm.linkage<external>, sym_name = "malloc", visibility_ = 0 : i64}> ({
}) : () -> ()
"llvm.func"() <{CConv = #llvm.cconv<ccc>, function_type = !llvm.func<void ()>, linkage = #llvm.linkage<external>, sym_name = "main", visibility_ = 0 : i64}> ({
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fastapi import FastAPI, HTTPException, Response, UploadFile, Form, Depends, Request | |
from fastapi.responses import JSONResponse | |
import json | |
import zipfile | |
import io | |
from dotenv import load_dotenv | |
import os | |
from supabase import create_client | |
from schemas import AuthDetails, DebugQuery, DebugResponse | |
from fastapi.staticfiles import StaticFiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{- | |
Makes the code much simpler than using cycle and other methods for Cartesian sums | |
-} | |
module PTableApplicative where | |
import Control.Applicative (liftA2) | |
type Events = [String] | |
type Probs = [Double] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"targets": [ | |
{ | |
"isStage": true, | |
"name": "Stage", | |
"variables": { | |
"`jEk@4|i[#Fk?(8x)AV.-my variable": [ | |
"my variable", | |
0 | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%% | |
from langchain.document_loaders import TextLoader | |
from langchain_google_genai import ChatGoogleGenerativeAI, GoogleGenerativeAIEmbeddings | |
from langchain.prompts import PromptTemplate | |
from langchain.vectorstores import FAISS | |
from langchain.text_splitter import RecursiveCharacterTextSplitter | |
from langchain.chains import LLMChain | |
from dotenv import load_dotenv | |
import os |
(snowflake-demo) @nyck33 ➜ /workspaces/sfguide-data-engineering-with-snowpark-python/steps/05_fahrenheit_to_celsius_udf (main) $ snow procedure execute -p "orders_update_sp()"
Error executing sql:
use role HOL_ROLE;
use warehouse HOL_WH;
use database HOL_DB;
use schema ANALYTICS;
call orders_update_sp();
002140 (42601): SQL compilation error:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import subprocess | |
from time import sleep | |
log_file_path = '/var/log/syslog' | |
check_interval = 60 # in seconds | |
def notify(message): | |
subprocess.Popen(['notify-send', message]) |
-- PRAGMA foreign_keys=OFF; (Commented out for PostgreSQL)
BEGIN TRANSACTION;
CREATE TABLE "Users" ("id" SERIAL PRIMARY KEY, "username" VARCHAR(255) DEFAULT '', "email" VARCHAR(255), "password" VARCHAR(255), "role" VARCHAR(255) DEFAULT 'customer', "deluxeToken" VARCHAR(255) DEFAULT '', "lastLoginIp" VARCHAR(255) DEFAULT '0.0.0.0', "profileImage" VARCHAR(255) DEFAULT '/assets/public/images/uploads/default.svg', "totpSecret" VARCHAR(255) DEFAULT '', "isActive" BOOLEAN DEFAULT TRUE, "createdAt" TIMESTAMP NOT NULL, "updatedAt" TIMESTAMP NOT NULL, "deletedAt" TIMESTAMP);
INSERT INTO Users VALUES(1,'','admin@juice-sh.op','0192023a7bbd73250516f069df18b500','admin','','','assets/public/images/uploads/defaultAdmin.png','',1,'2023-10-29 08:53:20.984 +00:00','2023-10-29 08:53:20.984 +00:00',NULL);
INSERT INTO Users VALUES(2,'','jim@juice-sh.op','e541ca7ecf72b8d1286474fc613e5e45','customer','','','assets/public/images/uploads/default.svg','',1,'2023-10-29 08:53:20.984 +00:00','2023-10-29 08:53:20.984 +00:00',NULL)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------- | |
>Log Session: Wednesday, September 27, 2023 at 4:45:21 PM Korean Standard Time | |
>System Info: | |
Product Version = Autopsy 4.21.0 | |
Operating System = Linux version 6.2.0-33-generic running on amd64 | |
Java; VM; Vendor = 17.0.8.1; OpenJDK 64-Bit Server VM 17.0.8.1+1-Ubuntu-0ubuntu123.04; Private Build | |
Runtime = OpenJDK Runtime Environment 17.0.8.1+1-Ubuntu-0ubuntu123.04 | |
Java Home = /usr/lib/jvm/java-17-openjdk-amd64 | |
System Locale; Encoding = en_US (autopsy); UTF-8 | |
Home Directory = /home/nyck33 |
NewerOlder